用工具效验签名是对着的,但是调用wx.getLocation就提示签名不对getLocation:invalid signature
公众号调用wx.getLocation时提示invalid signature?wx.config({ debug: debug, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: configObj.appId, // 必填,公众号的唯一标识 timestamp: configObj.timestamp, // 必填,生成签名的时间戳 nonceStr: configObj.nonceStr, // 必填,生成签名的随机串 signature: configObj.signature, // 必填,签名,见附录1 jsApiList: ['getLocation'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function() { wx.getLocation({ type: 'gcj02', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02' success: res => { callback && callback(res); }, fail: e => { failCallback && failCallback(e) } }) }); 在部分交界地区提示的getLocation:invalid signature,其它中心地区没有异常提示
1天前