微信公众号开发 常用接口地址

作者: dreamfly 分类: 未分类 发布时间: 2017-09-27 14:09

授权接口: $url          = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" . $appid . "&redirect_uri=" . $redirect_url . "&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect";

$appid 微信公众号appid

$redirect_url 授权后返回的页面,会在页面后面加上code参数

access_token信息获取接口

https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . $appid . '&secret=' . $secret . '&code=' .$code . '&grant_type=authorization_code

$appid 微信公众号appid

$sercret 微信公众号秘钥

$code 授权返回来的数据

用户信息接口

$access_token 获取到的access_token

https://api.weixin.qq.com/sns/userinfo?access_token=$access_token&openid=$openid&lang=zh_CN

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!