4037关注13716浏览
//点击一个广告进入小程序时候把广告的相关信息再后台做一下记录
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
-
至过去的我
2044人对此回答表示赞同
我是未来的你,你现在是不是在年找寻小程序答案。你不要感觉诧异,给你来信原因,就是让你不在后悔。今天去学习如何推广小程序,相信......点击查看更多> -
李思思044
18人对此回答表示赞同
主解决了吗?我也遇到这个问题了
展开180回复分享发布于 5年前评论(0)
收起评论
-
Kennedy
16人对此回答表示赞同
如何获取API权限呢
展开161回复分享发布于 5年前评论(1)
收起评论
-
Kelly小云鹅 2018-12-27 00:42
我也想知道
回复
-
-
Henry
13人对此回答表示赞同
这个提示是你的小程序没有使用这个api权限的意思
展开130回复分享发布于 5年前评论(0)
收起评论