您好,登錄后才能下訂單哦!
小編給大家分享一下小程序授權(quán)登錄獲取用戶信息的實現(xiàn)方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
小程序端先調(diào)用wx.login() 接口獲取登錄憑證code , 在success回調(diào)方法中再調(diào)用wx.getUserInfo() 接口獲取用戶基本信息(接口成功返回 encryptedData 用戶敏感信息加密數(shù)據(jù) ; iv 加密算法的初始向量)
wx.login({ success: function (e) { var code = e.code;//登錄憑證 if (code) { //2、調(diào)用獲取用戶信息接口 wx.getUserInfo({ success: function (res) { console.log({encryptedData: res.encryptedData, iv: res.iv, code: code}); // 將code, encryptedData ,iv 發(fā)送給服務(wù)端 ,根據(jù)服務(wù)端返回的數(shù)據(jù)判斷登錄成功或者失敗 }, fail: function () { console.log('獲取用戶信息失敗') } }) } else { console.log('獲取用戶登錄態(tài)失??!' + e.errMsg) } }, fail: function () { callback(false) }})
wx.login文檔地址: developers.weixin.qq.com/miniprogr...
wx.getUserInfo文檔地址: developers.weixin.qq.com/miniprogr...
服務(wù)端: 獲取小程序端的參數(shù)code 調(diào)用微信 auth.code2Session接口. 成功返回openid, session_key 等, 然后查看微信官方給出的驗證解密文檔
public function miniProgramLogin($code){ $url = "https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=$code&grant_type=authorization_code"; return json_decode(curl_request($url), true);}//助手函數(shù) curl_requestfunction curl_request($url, $data=null, $method='get', $header = array("content-type: application/json"), $https=true, $timeout = 5){ $method = strtoupper($method); $ch = curl_init();//初始化 curl_setopt($ch, CURLOPT_URL, $url);//訪問的URL curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只獲取頁面內(nèi)容,但不輸出 if($https){ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);//https請求 不驗證證書 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);//https請求 不驗證HOST } if ($method != "GET") { if($method == 'POST'){ curl_setopt($ch, CURLOPT_POST, true);//請求方式為post請求 } if ($method == 'PUT' || strtoupper($method) == 'DELETE') { curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //設(shè)置請求方式 } curl_setopt($ch, CURLOPT_POSTFIELDS, $data);//請求數(shù)據(jù) } curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); //模擬的header頭 //curl_setopt($ch, CURLOPT_HEADER, false);//設(shè)置不需要頭信息 $result = curl_exec($ch);//執(zhí)行請求 curl_close($ch);//關(guān)閉curl,釋放資源 return $result;}
auth.code2Session接口文檔 : developers.weixin.qq.com/miniprogr...
數(shù)據(jù)解密文檔 (有不同語言的示例代碼): developers.weixin.qq.com/miniprogr...
解密后的數(shù)據(jù):
獲取解密的數(shù)據(jù)后保存/更新用戶表.
以上是“小程序授權(quán)登錄獲取用戶信息的實現(xiàn)方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(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)容。