微信第三方平台,代公众号做网页授权相关问题

微信第三方平台,代公众号做网页授权相关问题_第1张图片

需要在微信第三方平台后台(https://open.weixin.qq.com/)添加开发域名。

第一步,回调拿到code参数。

https://open.weixin.qq.com/connect/oauth2/authorize?appid={公众号APPID}&redirect_uri={回调地址}&response_type=code&scope=snsapi_userinfo&state=STATE&component_appid={第三方平台APPID}#wechat_redirect

如果不添加开发域名会出现,“redirect_uri参数错误”的提示。

第二步,获取用户相关信息(openid)。

https://api.weixin.qq.com/sns/oauth2/component/access_token?appid={公众号APPID}&code={第一步拿到的code参数}&grant_type=authorization_code&component_appid={第三方平台APPID}&component_access_token={第三方access_token}

出现错误情况:

{
"errcode": 48001,
"errmsg": "api unauthorized, hints: [ req_id: dhKB244ce-0jxEla ]"
}

#出现此错误,查看component_access_token参数是否错用成了公众号的access_token
{
"errcode": 40001,
"errmsg": "invalid credential, access_token is invalid or not latest, hints: [ req_id: ehKB2qLnRa-hu66PA ]"
}

#access_token失效
{
"errcode": 40029,
"errmsg": "invalid code, hints: [ req_id: EhKBzQaLRa-FOo9Da ]"
}

#code失效

第三步,获取用户信息。(如果第一步scope参数为“snsapi_userinfo”有该步骤,如果为“snsapi_base”则不行该步骤。)

https://api.weixin.qq.com/sns/userinfo?access_token={第二步拿到的access_token}&openid={第二步拿到的openid}&lang=zh_CN

 

你可能感兴趣的:(微信)