问题模块 框架类型 问题类型 操作时间 AppID
管理后台 微信小程序 需求 05-02 wxab27ab4ad5380fcc
//点击一个广告进入微信小程序时候把广告的相关信息再后台做一下记录
wx.request({
url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=appid&secret='+secret,
success:function(res){
console.log(res);
//{"access_token":"access_token”} //这里是正常获取到的
const access_token = res.data.access_token;
wx.request({
url: 'https://api.weixin.qq.com/marketing/user_action_sets/add?version=v1.0&access_token=' + access_token,
method:"POST",
header: {
'content-type': 'application/json' // 默认值
},
data:{
"type": "WEB",
"name": "wxadtest",
"description": "test"
},
success:function(res){
console.log(res);
//返回码
//{"errcode":48001,"errmsg":"api unauthorized"}
}
})
}
})
哪位神可以解决一下这个48001??
相关文档参考https://wximg.qq.com/wxp/pdftool/get.html?id=BkPmceLSG&pa=5&name=miniprogram_conv
微信小程序开发问题解答
微信小程序开发者回答:
楼主解决了吗?我也遇到这个问题了
微信小程序开发者回答:
如何获取API权限呢
微信小程序开发者回答:
我也想知道
微信小程序开发者回答:
这个提示是你的微信小程序没有使用这个api权限的意思
本文网址:http://www.91bianli.com/weixinxiaochengxu/43914.html