微信小程序wx*********3c中通过web-view嵌入h5页面,h5页面里面使用 wx.onMenuShareTimeline,跳回到小程序中。
h5页面中配置了config,其中appid 是一个独立的公众号Id,现在问题是,加载h5页面加载的时候返回权限。大神给个解答啊??
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: '${appId}', // 必填,公众号的唯一标识
timestamp: '${timestamp}', // 必填,生成签名的时间戳
nonceStr: '${nonceStr}', // 必填,生成签名的随机串
signature: '${signature}',// 必填,签名
jsApiList: ['onMenuShareTimeline'] // 必填,需要使用的JS接口列表
});
wx.ready(function(res){
console.log("wx.ready")
wx.checkJsApi({
jsApiList:['onMenuShareTimeline'],
success:function(res){
alert(JSON.stringify(res));
},fail:function(res){
alert("fail"+JSON.stringify(res));
}
})
})
我没看错吧,你用了模板字符串,为什么不用反引号··?
、{errMsg: "config:fail,Error: 系统错误,错误码:63002,invalid signature [20200305 19:57:56][wx**********3c]", jsApiList: Array(0)}
https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=jsapisign
问题是,现在提示错误码63002,后面跟着的appid是我小程序的appid,这个不理解。我看社区里面小程序和公众号之间没什么关系。这个 wx.checkJsApi,返回的fail,为啥位返回小程序appid的呢
wx.checkJsApi({
jsApiList:[‘chooseImage’],
success:function(res){
alert(JSON.stringify(res));
},fail:function(res){
alert(‘fail’+JSON.stringify(res));
}
})
补充下,h5 页面中wx.config,appid参数是个独立的公众号id,微信小程序是自己的小程序appid,2个id