php實現微信登入的方法:1、經使用者同意授權,取得code;2、透過code換取網頁授權access_token;3、取得使用者資訊。
本文操作環境:windows10系統、php 7、thinkpad t480電腦。
使用php實作微信登入其實並不難,可以簡單地分成三步驟進行,如下:
第一步:使用者同意授權,取得code
//微信登录 public function wxlogin() { $appid = ""; $secret = ""; $str="http://***.***.com/getToken"; $redirect_uri=urlencode($str); //通过code获得 access_token + openid $url="https://open.weixin.qq.com/connect/oauth2/authorize?appid=".$appid."&redirect_uri=".$redirect_uri."&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect"; header("Location:" . $url); }
第二步:透過code換取網頁授權access_token
public function getToken() { $code = $_GET["code"]; $appid = ""; $secret = ""; //通过code获得 access_token + openid $url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=".$appid ."&secret=" . $secret . "&code=" . $code . "&grant_type=authorization_code"; $jsonResult =$this->https_request($url); $resultArray = json_decode($jsonResult, true); $access_token = $resultArray["access_token"]; $openid = $resultArray["openid"]; //第三步 获取用户信息 //通过access_token + openid 获得用户所有信息,结果全部存储在$infoArray里,后面再写自己的代码逻辑 $infoUrl = "https://api.weixin.qq.com/sns/userinfo?access_token=" . $access_token . "&openid=" . $openid.'&lang=zh_CN'; $infoResult = $this->https_request($infoUrl); $infoArray = json_decode($infoResult, true); if($infoArray['unionid']) { } }
附加:程式碼中用到的方法
// An highlighted block function https_request($url, $data = null) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE); if (!empty($data)){ curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $data); } curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($curl); curl_close($curl); return $output; }
推薦學習:php訓練
以上是php怎麼實作微信登入的詳細內容。更多資訊請關注PHP中文網其他相關文章!