js后台请求这个接口返回 48001?
let obj = await this.ctx.curl("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=私人的appid&secret=私人的",{
// 必须指定 method
method: 'GET',
// 通过 contentType 告诉 HttpClient 以 JSON 格式发送
contentType: 'json',
// 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body
dataType: 'json',
})
console.log(obj)
let userInfo = await this.ctx.curl("https://api.weixin.qq.com/cgi-bin/user/info?access_token="+obj.data.access_token
+"&openid="+"获取的openid"+"&lang=zh_CN",{
method: 'GET',
// 通过 contentType 告诉 HttpClient 以 JSON 格式发送
contentType: 'json',
// 明确告诉 HttpClient 以 JSON 格式处理返回的响应 body
dataType: 'json',
})
console.log(userInfo)
}
返回结果
data:
{ errcode: 48001,
errmsg: 'api unauthorized hint: [4VKB_a03071503!]' },
怎么关联店铺分享员管理,求官方回答
哈哈,秋天真美好。
这个接口,目前获取不到微信昵称了吗?还是有时候不稳定获取不到?
api unauthorized=>无权限,检查下是否使用错了token
没有啊 我这个是小程序 我用回传回来的token 直接去访问的不行
appid麻烦提供下
wx7aab13e1f2458b5b
这个链接提供下以及新的token和openid