使用小程序的appId以及生成的secret在服务器访问https://api.weixin.qq.com/sns/oauth2/access_token接口报错48001,api unauthorized
小程序可以用这个接口吗?小程序怎么申请使用这个接口?
wx.login({
success:function(res) {
if (res.code) {
//发起网络请求,服务器收到请求后调用https://api.weixin.qq.com/sns/oauth2/access_token接口
wx.request({
url: 'http://192.169.0.101/api/loginWithWeChat?code=' + res.code,
success:function(res) {
console.log(res)
}
})
}
}
})
你这是啥接口
api 功能未授权,请确认已获得该接口权限