PHP获取微信openid 简单教程
//***方法一
获取code
https://open.weixin.qq.com/connect/oauth2/authorize?appid=这里是你的公众号的APPID&redirect_uri=http://www.xx.com/getcode&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect
用户点击确认登录,自动跳转下面地址得到code
http://www.xx.com/getcode 这个是你自己的跳转地址
http://www.xx.com/getcode?code=0064f7afef7af7b395147bfe8b51f7bf&state=123
后面的这个 ?code=……123 是微信自动跳转添加的,不是你自己加的
下面是PHP语言,写在getcode这个页面里
1 2 3 4 5 |
|