h5 跳转小程序,使用 开放标签 方式,教程写的是可以对 nonceStr signature 字段任意填写非空字符串,实际按教程写,报错 invalid signature
wx.config({
// debug: true, // 调试时可开启
appId: '小程序 AppID', //
timestamp: 0, // 必填,填任意数字即可
nonceStr: 'nonceStr', // 必填,填任意非空字符串即可
signature: 'signature', // 必填,填任意非空字符串即可
jsApiList: ['chooseImage'], // 必填,随意一个接口即可
openTagList:['wx-open-launch-weapp'], // 填入打开小程序的开放标签名
})
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/staticstorage/jump-miniprogram.html
教程写的是静态网站,你也是?