您好,登錄后才能下訂單哦!
這篇文章主要介紹了php能用來(lái)開發(fā)小程序嗎,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
首先,看一下微信的登錄流程圖
步驟:在客戶端獲取當(dāng)前登錄微信用戶的登錄憑證(code)。使用該憑證向微信服務(wù)器換取該微信用戶的唯一標(biāo)識(shí)(openid)和會(huì)話密鑰(session_key)。引用微信加解密,獲取用戶信息。
注意:
1.未進(jìn)行登錄驗(yàn)證。
2.引用加解密是,路徑要正確。
//未授權(quán)用戶,請(qǐng)求微信接口,進(jìn)行授權(quán),獲取用戶信息 public function saveUser() { $appid = "自己的appid" ; $code = $this->input->post('code'); if (empty($code)){ return $this->fail('','code不能為空'); } $encryptedData = $this->input->post('encryptedData'); if (empty($encryptedData)){ return $this->fail('','encryptedData不能為空'); } $iv = $this->input->post('iv'); if (empty($iv)){ return $this->fail('','iv不能為空'); } $apiData = $this->getApiData($code); if(!isset($apiData['errcode'])){ $sessionKey = $apiData['session_key']; //獲取sessionKey 進(jìn)行解密 $userifo = new WXBizDataCrypt($appid, $sessionKey); $errCode = $userifo->decryptData($encryptedData, $iv, $data ); //保存 if ($errCode == 0) { $data = json_decode($data,true); $userData = [ 'nickname' =>$data['nickName'], 'headimg' =>$data['avatarUrl'], 'unionid' =>$data['unionId'], 'openid' =>$data['openId'], 'c_time' =>time(), ]; $result = $this->AppUserModel->get(['openid'=>$data['openId']]); if ($result){ $this->AppUserModel->update($userData,['openid'=>$data['openId']]); $returnData['uid']=$result['id']; return $this->success($returnData,'已授權(quán)'); }else{ $userDataId = $this->AppUserModel->add($userData); if ($userDataId){ $returnData['uid']=$userDataId; return $this->success($returnData,'已授權(quán)'); }else{ return $this->fail('','授權(quán)失敗'); } } } }else{ return $this->fail($apiData,'獲取用戶信息失敗'); } }
//獲取openid public function getApiData($code) { $appid = "自己的appid" ; $secret = "自己的secret"; $URL = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$code&grant_type=authorization_code"; $apiData=file_get_contents($URL); return json_decode($apiData,true); }
未避免多次獲取。在登錄之前先進(jìn)行驗(yàn)證。
//獲取用戶是否已經(jīng)授權(quán) public function userId() { $code = $this->input->get('code'); if (empty($code)){ return $this->fail('','code不能為空'); } $apiData = $this->getApiData($code); if (!isset($apiData['errcode'])){ $openID= $apiData['openid']; $userData = $this->AppUserModel->get(['openid'=>$openID]); if (empty($userData)) { return $this->fail('','未授權(quán)'); }else{ //這邊保存sessionKey ,方便后面手機(jī)號(hào)碼授權(quán) $sessionKey = $apiData['session_key']; $mc = &load_cache('redis'); $mc->save('session_key', $sessionKey, 3600); $returnData = [ 'uid'=>$userData['id'], 'type'=>$userData['type'] ]; return $this->success($returnData,'已授權(quán)'); } }else { return $this->fail('','獲取openid失敗'); } }
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享php能用來(lái)開發(fā)小程序嗎內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細(xì)的解決方法等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。