wx.config配置一直提示签名无效,状态码63002,但是用工具解析的签名一样?
var data = res.data;
var timestamp = parseInt(data.timestamp);
var nonceStr =data.noncestr;
var signature =data.signature;
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: 'wxxxxxxx1', // 必填,公众号的唯一标识
timestamp: data.timestamp, // 必填,生成签名的时间戳
nonceStr: nonceStr, // 必填,生成签名的随机串
signature: signature,// 必填,签名
jsApiList: ["startRecord"
,"stopRecord"
,"playVoice"
,"stopVoice"
,"uploadVoice"
,"downloadVoice"] // 必填,需要使用的JS接口列表
});
难道是我的url太长了?参数太多?
公众号已经配置js域名了。一直无效状态