企业微信pc端打开网页的窗口是个浏览器插件,兼容性不太高。我之前引用腾讯地图到H5应用中,手机能打开,PC端打开就是不显示地图。你的open-data也属于这类PC端的浏览器兼容性问题
请问PC端企业微信open-data为什么展示不出来名字呢?在手机上open-data完全没任何问题, 但是在PC端打开无法展示出名字... [图片][图片]
2020-09-25let userinfo_json = await this.session(this.config("app_module") + '_userinfo'); /*获取用户信息*/ if (think.isEmpty(userinfo_json)) { /*没有缓存用户信息 重新拉取*/ 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) { if (tmp_userinfo_json.data.errcode == "60011") { return this.redirect(think.config("err_nopermission")); } else if (tmp_userinfo_json.data.errcode == "40029") { let cnt = this.get("state"); if (cnt > 5) return this.fail('抱歉,尝试登录失败次数过多,请企业微信联系信息部检查账号!'); return this.redirect(this.create_login_url(cnt)); } else { return this.redirect(think.config("err_nologin")); } } if (tmp_userinfo_json.data.OpenId) { /*在微信中打开,以前关注过企业公众号,现在没有关注,返回值errcode是0,多了个OpenId字段,以此判断此人没有关注企业中公众号,跳到统一报错平台去*/ return this.redirect(think.config("err_nologin")); } 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; if (userinfo_json.errcode != 0) { if (userinfo_json.errcode == "60011") { return this.redirect(think.config("err_nopermission")); } } /*顺便存储此人部门*/ let dept_json = await this.qywx_dept(userinfo_json.department[0]); if (think.isEmpty(dept_json.department)) { return this.redirect(think.config("err_nopermission")); } else { userinfo_json.department = dept_json.department[0].name; } await this.session(this.config("app_module") + '_userinfo', userinfo_json); return userinfo_json; } else { return userinfo_json; }
企业微信自建应用,自定义菜单,导航到自己的H5项目,怎么获取当前用户信息啊?企业微信自建应用,自定义菜单,导航到自己的H5项目,怎么获取当前用户信息啊?
2020-09-25给你看下我写的 /*2.1文本消息发送*/ async qywx_send_txtmsg(userid,content){ let access_token = await this.qywx_access_token(); let msg_json = await axios.post("https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token="+access_token,{ "touser":userid, "msgtype":"text", "agentid":this.config("app_id"), "text":{"content":content}, "safe":0 }); },
批量推送消息企业微信批量推送给多个员工不同内容消息。使用哪个API接口
2020-07-31如果是对外部联系人推送消息会有限制,一个月可以推送4次
企业微信app中的文章推送怎么同步到微信app的企业微信订阅号中?之前在微信客户端关注的企业微信订阅号有消息推送,后来微信中的推送没了 只能收到企业微信app的文章推送,怎么弄同步?需要什么设置吗?
2020-07-30可以使用群机器人,第三方应用通过群机器人接口向群里面推送消息
企业微信群怎么和第三方应用即时通讯企业微信群怎么和第三方应用即时通讯
2020-07-30开发文档-附录里有调试插件 https://work.weixin.qq.com/api/doc/90000/90139/90315#客户端调试
本地如何调试企业微信的H5页面本地如何调试企业微信的H5页面 等一些鉴权操作 可以用微信开发者工具调试吗? 涉及到企业微信的相关AIP的时候 我应该怎么调欧式 难道发布一次调试一下?
2020-07-30可以的,我的账号都加了5个企业微信了,可以随时切换。
一个人可以加几个企业微信?一个人能同时加入两个企业微信吗?一个人可以同时加入两个企业微信吗?比如老板手上有两家公司都需要使用企业微信,一个人可以加入两个企业吗?其实一个人可以加入两个企业,没有限制。
2020-07-23给你看下我用Node.js封装的获取指定部门id所有本级和下级部门 /*2.10获得部门列表*/ async qywx_getdeptlist(dept_id){ let access_token = await this.union_qywx_access_token(); let userinfo_json = await axios("https://qyapi.weixin.qq.com/cgi-bin/department/list?access_token="+access_token+"&id="+dept_id); return userinfo_json.data; },
获取部门列表接口,用通讯录token,返回结果为空?access_token : ifrAJ_gkWp6PaOAgib512qaYCRx4Uhok9Oo32zEIQ_4i0_mx-nu9AAE8Nbts6YbyfUE-DSFVuN7wPhFHnIQn5vr5NBMQXObwGLRgmNrKxwC_vS87XYZvJA2jRoU-My3lNZh3xxWIo2LOF6cnd6t2LEeQZNZVURkBb_nX1t_Hh0n7eAJW5yVL4Fcj2St-S6s3UQohpwAX-iXdxpZ2sNerCw corpid : ww3d1d39d9c4e136f0 返回结果:{ "errcode": 0, "errmsg": "ok", "department": [] } 请问是哪里设置有问题么?
2020-07-23使用会话内容存档可以获取聊天记录 企业可通过API获取成员的客户服务会话内容,以满足企业管理客户服务质量 [图片]
能否获取内部运营人员与外部客户的聊天内容进行服务质检把客户个人微信拉入公司企业微信作为外部用户。内部运营进行回复答疑,但是服务质量如何无法监控,能否获取运营人员与客户的聊天内容,每天进行话术和服务质检?是否有这种接口
2020-07-23"https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxxxxxxxxxx&redirect_uri=http%3a%2f%2fapp.xxx.com%2fxxx&response_type=code&scope=snsapi_base&state=#wechat_redirect" 给你看下我写的
【2选1】构造网页授权链接接口的#wechat_redirect参数疑惑~!#wechat_redirect此字段是固定跟在url后面:[代码]https[代码][代码]:[代码][代码]//open.weixin.qq.com/connect/oauth2/authorize?appid=CORPID&redirect_uri=REDIRECT_URI&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect[代码]2、还是说可以代表明确的数值:https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx74e955420d317a6e&redirect_uri='.urlencode('http://1.xxxxweixin.applinzi.com/test/login.php').'&response_type=code&scope=snsapi_base&state=1(这里的1,代表#wechat_redirect,这样可以嘛?) 是第一种正确or第二种~!小白求助!!! 感谢好心人 ~么么哒~~!!
2020-07-22