当前位置: 代码迷 >> 综合 >> 微信小程序获取openid等参数报错errcode:48001 errmsg:'api unauthorized'
  详细解决方案

微信小程序获取openid等参数报错errcode:48001 errmsg:'api unauthorized'

热度:66   发布时间:2023-12-04 11:40:24.0


我的报这个错的时候,把url改成下面这个就可以了,

"https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$appsecret&js_code=$code&grant_type=authorization_code"


这个url有三种

1、$url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$appsecret&code=$code&grant_type=authorization_code";


2、$url = "https://api.weixin.qq.com/sns/oauth2/component/access_token?appid=$appid&secret=$appsecret&code=$code&grant_type=authorization_code";


3、$url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$appsecret&js_code=$code&grant_type=authorization_code";



-----------------------------华丽分割线------------以上是我自己总结的--------以下是自己又查找的资料可以参考一下---------------------------

详细参考https://www.cnblogs.com/sxmny/articles/4969119.html


  相关解决方案