- 微信jssdk在手机端调用无反应
config注入成功 agentConfig也注入成功 ‘getCurExternalChat和getCurExternalContact’这两个api pc端可以调用 能成功拿到群id和外部联系人id 但是在手机端 走到$wx.invoke('getCurExternalContact', {}, function(res){})这一步就没反应了 alert打印的‘getChatId’和‘try里面的’都能成功打印 但是‘getCurExternalChat里面的’这句话打印不了[图片]
2020-12-07 - 企业微信通过jssdk调用审批流程引擎接口” thirdPartyOpenPage“失败?
我的代码都申请了thirdPartyOpenPage的权限:(代码如下) wx.config({ beta: true,// 必须这么写,否则wx.invoke调用形式的jsapi会有问题 debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: data.corpid, // 必填,企业微信的corpID timestamp: data.timestamp, // 必填,生成签名的时间戳 nonceStr: data.noncestr, // 必填,生成签名的随机串 signature: data.signature,// 必填,签名,见 附录-JS-SDK使用权限签名算法 jsApiList: ['agentConfig', 'thirdPartyOpenPage', 'selectExternalContact'] // 必填,需要使用的JS接口列表,凡是要调用的接口都需要传进来 }); wx.ready(function () { wx.agentConfig({ corpid: data.corpid, // 必填,企业微信的corpid,必须与当前登录的企业一致 agentid: data.agentid, // 必填,企业微信的应用id (e.g. 1000247) timestamp: data.timestamp, // 必填,生成签名的时间戳 nonceStr: data.noncestr, // 必填,生成签名的随机串 signature: data.signature,// 必填,签名,见附录1 jsApiList: ['thirdPartyOpenPage', 'selectExternalContact'], //必填 success: function(res) { // 回调 console.log("agent配置也可以了") }, fail: function(res) { if(res.errMsg.indexOf('function not exist') > -1){ alert('版本过低请升级') } } }); }); 但是mac版企业微信打开自建应用后,提示如下,接口显示无法使用thirdPartyOpenPage接口。 {"errMsg":"preVerifyJSAPI:ok","checkResult":{"agentConfig":true,"selectExternalContact":true,"thirdPartyOpenPage":false}} 然后关掉提示,又接着提示如下,这个提示的详情地址连错误说明都没有。有点懵逼了。 {"errMsg":"agentConfig:fail_ticket no available more info at https://open.work.weixin.qq.com/devtool/query?e=42012","err_msg":"agentConfig:fail_ticket no available more info at https://open.work.weixin.qq.com/devtool/query?e=42012"}
2020-05-23 - config一直配置错误,是我代码写错了吗?实在不知道了,那位大神帮忙解答一下
mounted() { this.$http .get('/.../.../getSignature') .then(({ data: res }) => { if (res.code !== 0) { Toast({ type: 'fail', duration: this.$tipTime, message: res.msg }) return } wx.config({ beta: true, // 必须这么写,否则wx.invoke调用形式的jsapi会有问题 debug: true, // 开启调试模式,调用的所有api的返回值会在客户端弹出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: res.data.appid, // 必填,公众号的唯一标识 timestamp: res.data.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.noncestr, // 必填,生成签名的随机串 signature: res.data.signature, // 必填,签名,见附录1 jsApiList: ['scanQRCode'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }) wx.ready(function() { alert('ready接口处理成功') }) wx.error(function() { alert('ready接口处理失败') }) }) .catch(() => {}) }, methods: { // 扫码签到 smqdFun() { alert('进入扫码方法') wx.scanQRCode({ desc: 'scanQRCode desc', needResult: 1, // 默认为0,扫描结果由企业微信处理,1则直接返回扫描结果, scanType: ['qrCode'], // 可以指定扫二维码还是条形码(一维码),默认二者都有 success: function(res) { alert('进入扫码页面成功') alert(JSON.stringify(res)) // 回调 }, error: function(res) { alert('进入扫码页面失败') if (res.errMsg.indexOf('function_not_exist') > 0) { alert('版本过低请升级') } } }) }, } 后台返回的参数 [图片] 企业微信的报错: [图片][图片][图片][图片][图片][图片][图片]
2020-10-22