紀錄一下sharesdk第三方登入的主要**
整合請參照mob
注意事項:
android
:name=
".wxapi.wxentryactivity"
android
:configchanges=
"keyboardhidden|orientation|screensize"
android
:exported=
"true"
android
:screenorientation=
"portrait"
android
:theme=
"@android:style/theme.translucent.notitlebar"
/>
簽名使用正式版簽名 我預設的debug使用的也是正式版簽名
signingconfigs}buildtypes
debug
case r.id.tv_qq_login: name = qq.name
;trustauthorize(name);
break;
case r.id.tv_wechat_login
: name = wechat.name
;trustauthorize(name);
break;
case r.id.tv_microblog_login
: name = sinaweibo.name
;trustauthorize(name);
/*** 第三方授權**
@param
name
平台名字
*/private void
trustauthorize(string name)
pla.setplatformactionlistener(this);pla.ssosetting(false);
//設定false表示使用sso授權方式
pla.authorize();
}
@overridepublic void
oncomplete(platform platform, int i, hashmap, object> hashmap)
@override
public void
onerror(platform platform, int i, throwable throwable)
@override
public void
oncancel(platform platform, int i)
ShareSDK實現第三方登入和分享
1 建立專案 3 找開sharesdk for android資料夾,雙擊quickintegrater.jar檔案,選擇需要整合的第三方軟體,確定後形成sample資料夾,將此資料夾下的所有檔案複製到自己的專案中 覆蓋,注意,如出現紅色叉號,可找開對應專案檢查檔案是否出現亂碼,出現亂碼更改編碼格式...
第三方登入
我的應用就可以通過token第三方應用獲取一些基本資訊了,我的應用在獲取到這些基本資訊之後,就可以在我的應用中建立乙個賬號了。下次使用地方登入獲取到的這些使用者資訊,就可以直接用來登入我的應用了。為什麼先返回code呢?這個返回的code只能夠使用一次。這個code是從qq的伺服器返回給 時,我們時...
第三方登入
分類 android 2014 03 26 10 24 329人閱讀收藏 舉報 android android開發 第三方登入 名詞說明 access toekn 授權成功後返回的token,用於呼叫第三方api 第三方登入的主要作用 1 使用第三方賬號資訊來初始化自己的賬號 暱稱 頭像等資訊 第三...