微信openid获取流程 web端

zengrunxiu 2016-09-30

获取code

https://open.weixin.qq.com/connect/oauth2/authorize?

appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect

scope参数错误:微信端没有权限,需要申请

redirect_uri参数错误:没有用urlencode编码

上面code只能用一次,用过后需要重新获取。

获取openid

https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code

相关推荐