.vip后缀域名都会被拦截。换用.com、.cn等主流后缀的域名
手机端公众号链接企业官网,打开被安全系统拦截,怎么解决?将手机端企业官网链接到微信公众平台,用手机打开访问企业官网但被安全系统拦截 已多次提交申请恢复,至今未解决,这个要怎么处理呢?[图片][图片]
2021-05-28userid
企业微信H5静默授权获取的是用户的openid 还是 userid企业微信H5静默授权获取的是用户的openid 还是 userid
2021-04-23黄图炸群这种下三滥的手段都用出来了,肯定是有人红眼你的业务
企业微信外部群,被人黄图炸群系统秒封。限制进人。群消息也仅本人可见。 这种情况如何解决各位大神,请问企业微信外部群,被人黄图炸群系统秒封。限制进人。群消息也仅本人可见。 这种情况如何解决呢? 违规用户滥发黄图,这个应该是用户违规,为何连群一起封掉呢。 通过后台的防骚扰已经自动剔出发黄图刷屏的人。 但是,群功能扔无法正常使用。 另外,建议企业微信防骚扰机制再加强一些,把敏感字、黄色图片/视频,系统自动屏蔽。 不知道是否可行。 请大神帮忙回复,感谢!
2020-11-24报40029错误重新构造登陆链接然后跳转 //构造企业微信免登陆链接 create_login_url(cnt=0){ return "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" + think.config("corpid") + "&redirect_uri=" + think.config("encode_domain") + this.config("app_module") + "%2f" + this.ctx.controller +"%2f" + this.ctx.action + this.ctx.search+"&response_type=code&scope=snsapi_base&state="+cnt+"#wechat_redirect"; }, [图片]
企业微信 获取用户信息userID 每次都是 40029code = TJSploA81SrwkEG5vTPS944AprQdDFZ6ElP1wjH62fo
2020-11-23<html> <head> <title>标题</title> </head> </html> 取的是网页标题
企业微信导航栏怎么实现的?钉钉dingtalk-jsapi里面有API设置标题的,企业微信里面怎么实现这个导航栏呢 [图片]
2020-11-19我也用node.js 我用的是thinkjs框架,里面有restful接口https://thinkjs.org/zh-cn/doc/3.0/rest.html
企业微信会话内容存档获取接口有restful的吗?我们公司目前的情况是,使用nodejs做后台开发,目前呢,想开发企业微信会话存档这块的功能,但是我无法找到适合nodejs调用的restful接口,请问这块我要去做该怎么办? 如下图,这个模块,示例都是java或C写的,我不知道nodejs怎么调用它? 看github上有个wecom包,但是这个包也没支持会话内容存档。 [图片]
2020-11-09把缓存写在服务器端不香吗 await this.session('userinfo', userinfo_json);
企业微信打开H5,从企业A切换到企业B时,发现localstorage没有被清除啊企业微信进入企业A,打开一个H5,设置本地cache localstorage后,切换到企业B后,打开同一个H5,结果发现localStorage仍然存在,一般理解理论上都应该清理的,目前测试好多轮来,找同时换了机型测试,安卓和IOS都存在问题,麻烦官方给个明确的说法? 切换企业后,H5的localStorage是否会被清除??
2020-11-09知道员工userid后需要使用一下接口去调该用户信息,然后将用户信息写入缓存。我的缓存是写在服务器端的session里,看到今天有人提问说把缓存写在客户端结果出bug。写在服务器端的表示没有这个问题。 /*1.2企业微信获得用户信息*/ async qywx_userinfo(){ let access_token = await this.qywx_access_token(); let tmp_userinfo_json = await axios("https://qyapi.weixin.qq.com/cgi-bin/user/getuserinfo?access_token="+access_token+"&code="+this.get("code")); if(tmp_userinfo_json.data.errcode!=0){ return this.redirect(this.config("app_url")); } if(tmp_userinfo_json.data.OpenId){ return this.fail("您需要关注企业微信公众号才能在微信中使用"+this.config("app_name")); } let userinfo_json = await axios("https://qyapi.weixin.qq.com/cgi-bin/user/get?access_token="+access_token+"&userid="+tmp_userinfo_json.data.UserId); userinfo_json = userinfo_json.data; //将用户信息写在服务器session里 await this.session(this.config("app_module") + '_userinfo', userinfo_json); return userinfo_json; },
获取应用可见范围人员信息获取应用可见范围的所有userid后,如何能将userid快速转换成真实姓名 或者一开始就能获得真实姓名
2020-11-09/*同步企业微信用户列表*/ async sync_qywx_userlistAction(){ let user_list_json = await this.qywx_getdeptuserlist(1,1); for(var i = 0;i<user_list_json.userlist.length;i++){ let tmp_json = user_list_json.userlist[i]; await this.model("public_qywx_userinfo").thenAdd({ name: tmp_json.name, avatar: tmp_json.avatar, qywx_userid: tmp_json.userid, mobile: tmp_json.mobile, dept_name: tmp_json.department, position:tmp_json.position, department:tmp_json.department.toString() }, {qywx_userid: tmp_json.userid}); await this.model('public_qywx_userinfo').thenUpdate({ name: tmp_json.name, avatar: tmp_json.avatar, qywx_userid: tmp_json.userid, mobile: tmp_json.mobile, dept_name: tmp_json.department, position:tmp_json.position, dept_id:tmp_json.department.toString() }, {qywx_userid: tmp_json.userid}); } } /*2.9获取部门人员详细列表*/ async qywx_getdeptuserlist(dept_id,fetch_child=0){ let access_token = await this.qywx_access_token(); let userinfo_json = await axios("https://qyapi.weixin.qq.com/cgi-bin/user/list?access_token="+access_token+"&department_id="+dept_id+"&fetch_child="+fetch_child); return userinfo_json.data; },
接口问题:是否有通过企业成员UserId的集合,批量获取成员信息的接口企业微信,是否有通过企业成员UserId的集合,批量获取成员信息的接口
2020-11-09我的H5客户信息缓存都是写在服务器端,腾讯的客户端如微信/企业微信,写本地缓存别指望它能按你写的失效时间去执行
企业微信公司A切换到公司B再切换回公司Ah5页面的缓存会被清除?在开发H5页面的时候我设置了缓存会存用户录入的一些信息,档用户切换公司在切回来之后缓存的用户信息直接被清除了,不知道是什么原因,用的是local storage缓存
2020-09-25