如何通过PHP获取微信用户的openid和基本信息
程序员文章站
2022-03-09 18:19:02
...
本篇讲解通过PHP获取微信用户的openid和基本信息的操作。
基本配置
public function getcode(){ //基本配置 $appid=''; $redirect_uri=urlencode("https://授权回调页面域名/plugs/task/getuserinfo"); $url=" header("location:".$url);}
获取信息
public function getuserinfo(){ $appid = ""; $secret = ""; //这里获取到了code $code = $_GET['code']; //第一步:取得openid $oauth2Url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appid."&secret=".$secret."&code=".$code."&grant_type=authorization_code"; $oauth2 = $this->http_curl($oauth2Url); //accestoken $access_token = $oauth2["access_token"]; //openid $openid = $oauth2['openid'];//第二步:根据全局access_token和openid查询用户信息 $get_user_info_url = "https://api.weixin.qq.com/sns/userinfoaccess_token=".$access_token."&openid=".$openid."&lang=zh_CN"; $userinfo = $this->http_curl($get_user_info_url); dump($userinfo); //打印用户信息 }
curl请求
function http_curl($url){//用curl传参 $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);//关闭ssl验证 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch,CURLOPT_HEADER, 0); $output = curl_exec($ch); curl_close($ch); return json_decode($output, true);}
本文讲解了如何通过PHP获取微信用户的openid和基本信息,更多相关内容请关注。
相关推荐:
以上就是如何通过PHP获取微信用户的openid和基本信息的详细内容,更多请关注其它相关文章!
上一篇: while循环1加到100的和
下一篇: PHP中如何去除字符串首尾多余字符
推荐阅读
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
微信h5静默和非静默授权获取用户openId的方法和步骤
-
如何用PHP获取微信用户的openid和基本信息?
-
微信公众平台实现获取用户OpenID的方法_php实例
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
微信公众平台实现获取用户OpenID的方法_PHP
-
微信oauth登录获取的openid,和关注用户列表里的openid不同
-
微信小程序实例:如何获取用户的openid(附代码)
-
微信公众平台网页授权获取用户基本信息中授权回调域名设置的变动_php实例
-
微信小程序实例:如何获取用户的openid(附代码)