微信开放平台获取授权公众号的流程

时间:2018-05-14 14:36:33   收藏:0   阅读:1307

官方流程如下

技术分享图片
实际上这个流程图并不完整

实际流程

  1. 获取推送的component_verify_ticket,开放平台会每10分钟推送到授权事件接收URL里
  2. 获取component_access_token,使用上一步获取到的ticket,向开放平台请求https://api.weixin.qq.com/cgi-bin/component/api_component_token,这个token有效期两小时
  3. 获取预授权码pre_auth_code,使用component_access_token,向开放平台请求https://api.weixin.qq.com/cgi-bin/component/api_create_preauthcode?component_access_token=%s
  4. 拼接授权回调url https://mp.weixin.qq.com/cgi-bin/componentloginpage?component_appid=xxxx&pre_auth_code=xxxxx&redirect_uri=xxxx&auth_type=xxx
  5. 在回调里向开放平台请求https://api.weixin.qq.com/cgi-bin/component/api_query_auth?component_access_token=%s,获取公众号授权,取得公众号id,这里还会返回公众的access_token,和refresh_token
  6. 在回调里向开放平台请求https://api.weixin.qq.com/cgi-bin/component/api_get_authorizer_info?component_access_token=%s,使用上一步的公众号id,获取公众号信息

常见错误

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!