您好,登錄后才能下訂單哦!
微信開發(fā)中怎么利用php獲取用戶的信息?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習下,希望你能有所收獲。
php 微信開發(fā)獲取用戶信息
獲取用戶信息的大致算法是
用戶授權(quán)登錄第三方網(wǎng)站,
重點:scope參數(shù):
snsapi_basic 靜默登錄,不需要用戶授權(quán),只能獲取到openid;
snsapi_userinfo ,需要用戶點擊授權(quán),能獲取到openid和所有用戶信息;
第一步:先獲取用戶的code值;
第二步:根據(jù)code值去獲取access_token,每次請求的值都不一樣,如果沒有使用,每五分鐘更新一次;
第三步:根據(jù)access_token獲取用戶信息;
1.獲取code代碼實現(xiàn):
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/oauth3/authorize?appid='.$appid.'&redirect_uri='.urlencode($redirect_url).'&response_type=code&scope='.$scope.'&state=123#wechat_redirect'; header("Location:".$url);
2、根據(jù)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/oauth3/access_token?appid=".$appid."&secret=". $appsecret."&code=".$code."&grant_type=authorization_code"; $weixin=file_get_contents($url);//通過code換取網(wǎng)頁授權(quán)access_token $jsondecode=json_decode($weixin); //對JSON格式的字符串進行編碼 $array = get_object_vars($jsondecode);//轉(zhuǎn)換成數(shù)組 $openid = $array['openid'];//輸出openid return $openid; } echo getOpenID($appid,$appsecret,$code);
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。