今天講講利用微信oauth2實現第三方登錄的實現方法.php
先說說前提吧!html
首先你得是服務號,而且是通過認證的.這樣微信會給你不少第三方接口的權限,若是是訂閱號或者沒有認證的服務號那就不用想了!前端
一開始你須要進入微信公衆平臺開啓開發模式,而且填寫oauth2的回調地址,地址填寫你項目的域名就能夠了.好比:www.baidu.com或zhidao.baidu.com.若是你的項目在二級域名就寫二級域名數據庫
前端url受權地址,在url中填寫appid與你項目中方法中的oauth的地址,具體在下面的代碼中能夠看到.json
<ahref="https://open.weixin.qq.com/connect/oauth2/authorize?appid=appid&redirect_uri=http://www.xxxxxx.com/action/function/oauth2&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect">受權</a>
再說後臺邏輯,首先調用微信接口的SDK.(後面會有)api
include('./Card/Common/class_weixin_adv.php');
以後填入微信官方給的的appid與secretruby
$weixin=new class_weixin_adv("appid", "secret");
初始化SDK的類,取到code,利用獲取到的code在獲取出openid 看下面代碼註釋!微信
$url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=appid&secret=secret&code=".$_GET['code']."&grant_type=authorization_code"; $res = $weixin->https_request($url);//調用SDK方法獲取到res 從中能夠獲得openid $res=(json_decode($res, true));//轉換成array 方便調用openid
繼續調用SDK方法,獲取到用戶信息.此時$row已經得到用戶信息了 能夠var_dump下看看鍵值方便存入數據庫cookie
$row=$weixin->get_user_info($res['openid']);
獲取用戶信息就大功告成了,但這還不夠.咱們須要的是無需註冊!因此須要利用openid,openid屬於惟一憑證,每一個用戶對不一樣的公衆號都有不一樣的openid.能夠理解成用戶帳號的感受.我這裏用的是把openid存入cookie的解決方案,相似用戶登錄的感受,一些關鍵數據驗證只須要與數據庫中的openid進行對比.其餘的一些利用方法能夠發揮你們的想象!能夠跟我留言交流!app
關於以前的a連接的受權,你們也能夠判斷cookie是否存在openid,從而讓未受權用戶直接跳轉到該地址,省卻了用戶的一步操做.
下面是完整邏輯代碼,你們能夠參考下!
public function oauth2(){ include('./Card/Common/class_weixin_adv.php'); $weixin=new class_weixin_adv("appid", "secret"); if (isset($_GET['code'])){ $url="https://api.weixin.qq.com/sns/oauth2/access_token?appid=appid&secret=secret&code=".$_GET['code']."&grant_type=authorization_code"; $res = $weixin->https_request($url); $res=(json_decode($res, true)); $row=$weixin->get_user_info($res['openid']); if ($row['openid']) { //這裏寫上邏輯,存入cookie,數據庫等操做 cookie('weixin',$row['openid'],25920000); }else{ $this->error('受權出錯,請從新受權!'); } }else{ echo "NO CODE"; } $this->display(); }
SDK代碼:微信官方有手冊,我就很少講了,本身研究,很簡單的!.
<?php
/** * 微信SDK * pan041ymail@gmail.com */ class class_weixin_adv { var $appid = ""; var $appsecret = ""; //構造函數,獲取Access Token public function __construct($appid = NULL, $appsecret = NULL) { if($appid){ $this->appid = $appid; } if($appsecret){ $this->appsecret = $appsecret; } $this->lasttime = 1395049256; $this->access_token = "nRZvVpDU7LxcSi7GnG2LrUcmKbAECzRf0NyDBwKlng4nMPf88d34pkzdNcvhqm4clidLGAS18cN1RTSK60p49zIZY4aO13sF-eqsCs0xjlbad-lKVskk8T7gALQ5dIrgXbQQ_TAesSasjJ210vIqTQ"; if (time() > ($this->lasttime + 7200)){ $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$this->appid."&secret=".$this->appsecret; $res = $this->https_request($url); $result = json_decode($res, true); $this->access_token = $result["access_token"]; $this->lasttime = time(); } } //獲取用戶基本信息 public function get_user_info($openid) { $url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=".$this->access_token."&openid=".$openid."&lang=zh_CN"; $res = $this->https_request($url); return json_decode($res, true); } //https請求 public 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; } }
轉載請註明出處:http://home.cnblogs.com/u/p-0day/