wx-open-launch-app唤起app,页面一直显示config:invalid signature, 但用签名工具查验,又都是对的。
import jWeixin from 'weixin-js-sdk';
jWeixin.config({
debug: true,
appId: 'wx8ce52d55b0450242', // 必填,公众号的唯一标识
timestamp: resData.timeStamp, // 必填,生成签名的时间戳
nonceStr: resData.nonceStr, // 必填,生成签名的随机串
signature: resData.signature, // 必填,签名
jsApiList: ["onMenuShareWeibo"], // 必填,需要使用的JS接口列表
openTagList: ['wx-open-launch-app'] // 可选,需要使用的开放标签列表,例如['wx-open-launch-app']
});
jWeixin.error((error)=>{
console.log('error',error);
})
<wx-open-launch-app v-else class="share-audio-btn open launchapp" id="launch-btn" appid="wx7bc682f5320c61e0" extinfo="your-extinfo" @error="handleErrorFn" @launch="handleLaunchFn">
<script type="text/wxtag-template">
<style>
.share-audio-btn-wx{
width: 100%;
height: 100%;
color: #FFFFFF;
text-align: center;
}
</style>
<div class="share-audio-btn-wx"><span>打开</span></div>
</script>
</wx-open-launch-app>
请问楼主问题解决了吗?我这边也遇到了这个问题