php 实现微信开发获取用户信息
这篇文章主要介绍了php 微信开发获取用户信息如何实现的相关资料,需要的朋友可以参考下 php 微信开发获取用户信息 获取用户信息的大致算法是 用户授权登录第三方网站, 重点:scope参数: 第一步:先获取用户的code值; 1.获取code代码实现: getcode.php if(isset($_SESSION['user'])){ print_r($_SESSION['user']); exit; }$appid='wx1d7c6fcd6131143b3'; $redirect_url="http://www.antfortune.vip/callback.php"; $scope='snsapi_userinfo';//获取的方式; $url='https://open.weixin.qq.com/connect/oauth2/authorize?appid='.$appid.'&redirect_uri='.urlencode($redirect_url).'&response_type=code&scope='.$scope.'&state=123#wechat_redirect';header("Location:".$url); 2、根据code获取access_token和openid getOpenid.php<?php//获取用户openid$appid="your appid";$appsecret="your appsecret";$code=$_GET['code'];function getOpenID($appid,$appsecret,$code){$url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appid."&secret=". $appsecret."&code=".$code."&grant_type=authorization_code";$weixin=file_get_contents($url);//通过code换取网页授权access_token$jsondecode=json_decode($weixin); //对JSON格式的字符串进行编码$array = get_object_vars($jsondecode);//转换成数组$openid = $array['openid'];//输出openidreturn $openid;}echo getOpenID($appid,$appsecret,$code); 以上就是本文的全部内容,希望对大家的学习有所帮助。 相关推荐: 【微信开发】微信支付参数设置【图】,信开发支付参数设置 微信支付开发流程,信支付开发流程 微信开发代码 以上就是php 实现微信开发获取用户信息的详细内容,更多请关注php中文网其它相关文章! |
- 上一篇:如何使用Koa2开发微信二维码扫码支付
- 下一篇:做一个移动端微信公众号(附代码)