1.index.html**,顯示第三方驗證碼,並且設定提交到本地伺服器
2.getcookie.php**,獲取第三方cookie介面
3.test.php 本地伺服器獲取cookie和checkcode,curl提交到第三方伺服器驗證
<?php
$checkcode = $_post['checkcode'];
$sess_id = $_post['sess_id'];
$cookie_str = "phpsessid=";
$ch = curl_init();
$data['checkcode'] = $checkcode;
curl_setopt_array($ch,array(curlopt_url=>'',curlopt_returntransfer=>1,curlopt_post=>1,curlopt_postfields=>$data,curlopt_cookie=>$cookie_str));
$result=curl_exec($ch);
$result_json = json_decode($result,true);
var_dump($result_json);
curl_close($ch);
?>
4.checkcode.php 第三方驗證驗證碼介面
第三方登入
我的應用就可以通過token第三方應用獲取一些基本資訊了,我的應用在獲取到這些基本資訊之後,就可以在我的應用中建立乙個賬號了。下次使用地方登入獲取到的這些使用者資訊,就可以直接用來登入我的應用了。為什麼先返回code呢?這個返回的code只能夠使用一次。這個code是從qq的伺服器返回給 時,我們時...
第三方登入
分類 android 2014 03 26 10 24 329人閱讀收藏 舉報 android android開發 第三方登入 名詞說明 access toekn 授權成功後返回的token,用於呼叫第三方api 第三方登入的主要作用 1 使用第三方賬號資訊來初始化自己的賬號 暱稱 頭像等資訊 第三...
shareSdk第三方登入
紀錄一下sharesdk第三方登入的主要 整合請參照mob注意事項 android name wxapi.wxentryactivity android configchanges keyboardhidden orientation screensize android exported true...