- 在线调试工具加了白名单也不能用
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET 报错如下: { "errcode":40164, "errmsg":"invalid ip 27.189.230.1 ipv6 ::ffff:27.189.230.155, not in whitelist rid: 64d57e7f-338fdd02-1d48e183" } 我将27.189.230.1加进白名单还是报上述错误。
2023-08-11 - H5中js-sdk扫码功能,Android手机微信中无法调用扫码?
我的H5对接微信JS-SDK中的扫码功能,发现在Android手机微信中无法调用扫码功能,在苹果手机微信中可以使用. 报如下错误: errMsg:scanQRCode:permissi on denied errMsg:config:invalid signature 部分代码如下: jweixin.config({ debug: true, appId: this.appId, timestamp: this.timestamp, nonceStr: this.nonceStr, signature: this.signature, jsApiList: [ 'checkJsApi', 'scanQRCode' ] }); jweixin.checkJsApi({ jsApiList : ['checkJsApi','scanQRCode'], success : function(res) { } }); jweixin.scanQRCode({ needResult: 1, scanType: ["qrCode","barCode"], success: function (res) { _this.devicesn = res.resultStr; } });
2020-01-09