我试着在测试用的小程序中生成已发布过的小程序的二维码总不成功,总是报
41030:invalid page hint: [dFECjA0751b464]
如果在POST中把access_token:res.data.access_token也做一个参数就会报47001:data format error hint
这是什么问题呢
wx.request({
url: ‘https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=正在使用中的小程序appid&secret=正在使用中的小程序appscret’,
method: ‘GET’,
header: {
‘content-type’: ‘application/json;charset=utf-8’ // 默认值
},
success(res) {
console.log(“success:” + res.data.access_token),
wx.request({
url: ‘https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=’+res.data.access_token,
method: ‘POST’,
header: {
‘content-type’:‘application/json;charset=utf-8’ // 默认值
},
data:{
// access_token:res.data.access_token,//启用报47001:data format error hint
scene:‘9000’,
page:‘pages/index/index’
},
pages/index/index发布的小程序是有这一页的
,我就是因为用其它程序生成时发送总报错"47001:data format error hint",我三个接口全试了,才改到另一个还没上线的小程序中测试这个东西,看是咋回事的,结果三个接口全试了还是一样不行,改参数名,去掉参数,都不行,只是报的错不同而已,我按官方文档做的不行,按网上其它人说的也不行,有没有其它什么状况会影响这个玩意儿