android集成twitter登陸

 

Twitter曾經舉行了本身四年以來的第一場開發者大會。而這場名爲「Flight」的大會,也是之後它的年度慣例。html

此次大會的主題也徹底圍繞開發者進行。大會的焦點是一個名叫Fabric的新SDK,裏面包括三個開發者工具包:面向Twitter自己的 Twitter Kit、面向Twitter廣告網絡的MoPub,以及基於Twitter 2013年收購的移動應用崩潰分析工具Crashlytics的Crashlytics Kitandroid

我仍是先貼上twitter登陸的官方網站:https://dev.twitter.com/twitterkit/android/log-in-with-twitter,不過都是英文,固然,咱們還須要爬過一堵牆纔可以上網。web

首先咱們要先去註冊twitter開發者帳號,而且建立應用,https://apps.twitter.com.服務器

點擊右上角建立應用:網絡

而後會進入下圖:app

咱們須要填入應用的名稱,還有應用的描述,至於website,下面解釋的意思大概是:
您的應用程序的可公開訪問的主頁,用戶能夠下載,使用或查找有關您的應用程序的更多信息。該徹底限定的URL用於源應用程序建立的tweets,並將顯示在面向用戶的受權屏幕中。 (若是你尚未URL,只需在這裏放置一個佔位符,但記住稍後再改變它。)ide

 

 

應用建立完成以後,咱們能夠進入應用查看相關的設置,點擊Keys and Access Tokens,能夠看到Consumer Key (API Key)和Consumer Secret (API Secret),這兩個須要用到工具

 

好了,建立應用就到這裏,接下來說講如何集成到咱們的項目:gradle

(一)首先咱們要集成twitter相關的sdk,官網上寫得比較多,若是僅僅須要登陸功能,那麼就只須要網站

在build.gradle(app)裏面寫上

dependencies { compile 'com.twitter.sdk.android:twitter-core:3.1.1' }

在build.gradle(project)的 repositories裏寫上

repositories { jcenter() }

(二)在咱們的資源文件裏面添加API KEY,這個API KEY在twitter的應用管理能夠看到,就是咱們上面說的那兩個

<resources>
  <string android:name="com.twitter.sdk.android.CONSUMER_KEY">XXXXXXXXXXX</string>
  <string android:name="com.twitter.sdk.android.CONSUMER_SECRET">XXXXXXXXXXX</string>
</resources>

 

(三)創建一個自定義的Application,在onCreate()方法裏面初始化

 Twitter.initialize(this); TwitterConfig config = new TwitterConfig.Builder(this) .logger(new DefaultLogger(Log.DEBUG)) .twitterAuthConfig(new TwitterAuthConfig("CONSUMER_KEY", "CONSUMER_SECRET")) .debug(true) .build(); Twitter.initialize(config);

 

(四)咱們能夠用twitter提供好的登陸按鈕,固然也能夠自定義,接下來會講。

<com.twitter.sdk.android.core.identity.TwitterLoginButton android:id="@+id/login_button" android:layout_width="wrap_content" android:layout_height="wrap_content" />

 

(五)在代碼中:

loginButton = (TwitterLoginButton) findViewById(R.id.login_button); loginButton.setCallback(new Callback<TwitterSession>() { @Override public void success(Result<TwitterSession> result) { // Do something with result, which provides a TwitterSession for making API calls
 result裏面包含了用戶的信息,咱們能夠從中取出token,tokenSecret
(若是咱們有本身的後臺服務器,發送這兩個到咱們本身的後臺,後臺再去驗證)
     TwitterAuthToken authToken = result.data.getAuthToken();

String token = authToken.token;
 String appId = getResources().getString(R.string.twitter_app_id);
String tokenSecret = authToken.secret;
  }

 @Override public void failure(TwitterException exception) { // Do something on failure  } });


@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); // Pass the activity result to the login button. loginButton.onActivityResult(requestCode, resultCode, data); }
 

 若是登陸按鈕是在fragment中的話,那麼onActivityResult應該用以下代碼:

應該

@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); // Pass the activity result to the fragment, which will then pass the result to the login // button.
    Fragment fragment = getFragmentManager().findFragmentById(R.id.your_fragment_id); if (fragment != null) { fragment.onActivityResult(requestCode, resultCode, data); } }

其他的能夠參考官網

 

接下來說的一個是自定義登陸按鈕,其實有一個妙計,請看下面界面代碼:

<FrameLayout android:id="@+id/frameLayout" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/facebook" android:layout_marginTop="@dimen/login_button_margin_bottom" android:layout_centerHorizontal="true">

        <com.twitter.sdk.android.core.identity.TwitterLoginButton android:id="@+id/login_button" android:layout_width="@dimen/button_width" android:layout_height="@dimen/button_height" android:layout_marginTop="@dimen/button_margin_bottom" android:visibility="gone"/>

        <ImageView android:id="@+id/login_image" android:layout_width="@dimen/button_width" android:layout_height="@dimen/button_height" android:src="@drawable/twitter" />
    </FrameLayout>

而後代碼中:

@Override public void onClick(View view) { switch (view.getId()){case R.id.login_image: LoginButton.performClick(); break; default: break; } }

即,點擊咱們自定義的按鈕的時候,讓twitter登陸按鈕執行點擊操做。

先到這裏,之後慢慢補充。

 轉載請標明出處:http://www.cnblogs.com/tangZH/p/8206569.html

相關文章
相關標籤/搜索