按照官方文档配置H5页面转发,在某些iPhone手机上总是提示{"errMsg":"config:fail"}。
因为工程用的是 vue router 的 history 模式,根据一些帖子的解决办法,用全局变量保存了进入时的URL
if (global.entryUrl === 'undefined' || global.entryUrl === '') {
global.entryUrl = window.location.href.split('#')[0];
}
let config = Object.assign({
debug: true,
jsApiList: ['updateAppMessageShareData', 'updateTimelineShareData']
}, {
appId: ret.appid, //公众号的唯一标识
timestamp: ret.timestamp, //接口返回签名的时间戳
nonceStr: ret.noncestr, //接口返回签名的随机串
signature: ret.signature //接口返回签名
})
wx.config(config)
一些机器上已经好了,但在iOS系统是17.7.1的机器上还是不行,JSSDK版本是最新的1.6.0。
请问有没有高手帮忙解惑一下
你好,报错签名错误吗?
{"errMsg":"config:fail"}