Android Open Source - spring-android-samples Twitter Web O Auth Activity






From Project

Back to project page spring-android-samples.

License

The source code is released under:

Apache License

If you think the Android project spring-android-samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2010-2014 the original author or authors.
 */*  ww w  . ja  v  a  2s  .c om*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.android.twitterclient;

import org.springframework.social.connect.Connection;
import org.springframework.social.connect.ConnectionRepository;
import org.springframework.social.connect.DuplicateConnectionException;
import org.springframework.social.oauth1.AuthorizedRequestToken;
import org.springframework.social.oauth1.OAuth1Parameters;
import org.springframework.social.oauth1.OAuthToken;
import org.springframework.social.twitter.api.Twitter;
import org.springframework.social.twitter.connect.TwitterConnectionFactory;

import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;

/**
 * @author Roy Clarkson
 */
public class TwitterWebOAuthActivity extends AbstractWebViewActivity {

  @SuppressWarnings("unused")
  private static final String TAG = TwitterWebOAuthActivity.class.getSimpleName();

  private static final String REQUEST_TOKEN_KEY = "request_token";

  private static final String REQUEST_TOKEN_SECRET_KEY = "request_token_secret";

  private ConnectionRepository connectionRepository;

  private TwitterConnectionFactory connectionFactory;

  private SharedPreferences twitterPreferences;

  // ***************************************
  // Activity methods
  // ***************************************
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.connectionRepository = getApplicationContext().getConnectionRepository();
    this.connectionFactory = getApplicationContext().getTwitterConnectionFactory();
    this.twitterPreferences = getSharedPreferences("TwitterConnectPreferences", Context.MODE_PRIVATE);
  }

  @Override
  public void onStart() {
    super.onStart();
    Uri uri = getIntent().getData();
    if (uri != null) {
      String oauthVerifier = uri.getQueryParameter("oauth_verifier");

      if (oauthVerifier != null) {
        getWebView().clearView();
        new TwitterPostConnectTask().execute(oauthVerifier);
      }
    } else {
      new TwitterPreConnectTask().execute();
    }
  }

  // ***************************************
  // Private methods
  // ***************************************
  private String getOAuthCallbackUrl() {
    return getString(R.string.twitter_oauth_callback_url);
  }

  private void displayTwitterAuthorization(OAuthToken requestToken) {
    // save for later use
    saveRequestToken(requestToken);

    // Generate the Twitter authorization URL to be used in the browser or web view
    String authUrl = this.connectionFactory.getOAuthOperations().buildAuthorizeUrl(requestToken.getValue(),
        OAuth1Parameters.NONE);

    // display the twitter authorization screen
    getWebView().loadUrl(authUrl);
  }

  private void displayTwitterOptions() {
    Intent intent = new Intent();
    intent.setClass(this, TwitterActivity.class);
    startActivity(intent);
    finish();
  }

  private void saveRequestToken(OAuthToken requestToken) {
    SharedPreferences.Editor editor = this.twitterPreferences.edit();
    editor.putString(REQUEST_TOKEN_KEY, requestToken.getValue());
    editor.putString(REQUEST_TOKEN_SECRET_KEY, requestToken.getSecret());
    editor.commit();
  }

  private OAuthToken retrieveRequestToken() {
    String token = this.twitterPreferences.getString(REQUEST_TOKEN_KEY, null);
    String secret = this.twitterPreferences.getString(REQUEST_TOKEN_SECRET_KEY, null);
    return new OAuthToken(token, secret);
  }

  private void deleteRequestToken() {
    this.twitterPreferences.edit().clear().commit();
  }

  // ***************************************
  // Private classes
  // ***************************************
  private class TwitterPreConnectTask extends AsyncTask<Void, Void, OAuthToken> {

    @Override
    protected void onPreExecute() {
      showProgressDialog("Initializing OAuth Connection...");
    }

    @Override
    protected OAuthToken doInBackground(Void... params) {
      // Fetch a one time use Request Token from Twitter
      return connectionFactory.getOAuthOperations().fetchRequestToken(getOAuthCallbackUrl(), null);
    }

    @Override
    protected void onPostExecute(OAuthToken requestToken) {
      dismissProgressDialog();
      displayTwitterAuthorization(requestToken);
    }

  }

  private class TwitterPostConnectTask extends AsyncTask<String, Void, Void> {

    @Override
    protected void onPreExecute() {
      showProgressDialog("Finalizing OAuth Connection...");
    }

    @Override
    protected Void doInBackground(String... params) {
      if (params.length <= 0) {
        return null;
      }

      final String verifier = params[0];

      OAuthToken requestToken = retrieveRequestToken();

      // Authorize the Request Token
      AuthorizedRequestToken authorizedRequestToken = new AuthorizedRequestToken(requestToken, verifier);

      // Exchange the Authorized Request Token for the Access Token
      OAuthToken accessToken = connectionFactory.getOAuthOperations().exchangeForAccessToken(
          authorizedRequestToken, null);

      deleteRequestToken();

      // Persist the connection and Access Token to the repository
      Connection<Twitter> connection = connectionFactory.createConnection(accessToken);

      try {
        connectionRepository.addConnection(connection);
      } catch (DuplicateConnectionException e) {
        // connection already exists in repository!
      }

      return null;
    }

    @Override
    protected void onPostExecute(Void v) {
      dismissProgressDialog();
      displayTwitterOptions();
    }

  }

}




Java Source Code List

org.springframework.android.basicauth.AbstractAsyncActivity.java
org.springframework.android.basicauth.MainActivity.java
org.springframework.android.basicauth.Message.java
org.springframework.android.facebookclient.AbstractAsyncActivity.java
org.springframework.android.facebookclient.AbstractAsyncListActivity.java
org.springframework.android.facebookclient.AbstractWebViewActivity.java
org.springframework.android.facebookclient.AsyncActivity.java
org.springframework.android.facebookclient.FacebookActivity.java
org.springframework.android.facebookclient.FacebookFeedListAdapter.java
org.springframework.android.facebookclient.FacebookHomeFeedActivity.java
org.springframework.android.facebookclient.FacebookProfileActivity.java
org.springframework.android.facebookclient.FacebookProfileListAdapter.java
org.springframework.android.facebookclient.FacebookWallPostActivity.java
org.springframework.android.facebookclient.FacebookWebOAuthActivity.java
org.springframework.android.facebookclient.MainApplication.java
org.springframework.android.reader.AbstractAsyncListActivity.java
org.springframework.android.reader.AbstractMenuActivity.java
org.springframework.android.reader.AtomActivity.java
org.springframework.android.reader.AtomFeedActivity.java
org.springframework.android.reader.AtomFeedListAdapter.java
org.springframework.android.reader.AtomSyndFeedActivity.java
org.springframework.android.reader.MainActivity.java
org.springframework.android.reader.RssActivity.java
org.springframework.android.reader.RssChannelActivity.java
org.springframework.android.reader.RssChannelListAdapter.java
org.springframework.android.reader.RssSyndFeedActivity.java
org.springframework.android.reader.SyndFeedListAdapter.java
org.springframework.android.showcase.AbstractAsyncActivity.java
org.springframework.android.showcase.AbstractAsyncListActivity.java
org.springframework.android.showcase.AbstractMenuActivity.java
org.springframework.android.showcase.AsyncActivity.java
org.springframework.android.showcase.MainActivity.java
org.springframework.android.showcase.rest.GoogleSearchActivity.java
org.springframework.android.showcase.rest.GoogleSearchGsonActivity.java
org.springframework.android.showcase.rest.GoogleSearchJacksonActivity.java
org.springframework.android.showcase.rest.GoogleSearchResponse.java
org.springframework.android.showcase.rest.GoogleSearchResultListAdapter.java
org.springframework.android.showcase.rest.GoogleSearchResult.java
org.springframework.android.showcase.rest.HttpGetActivity.java
org.springframework.android.showcase.rest.HttpGetGzipActivity.java
org.springframework.android.showcase.rest.HttpGetGzipCompressedActivity.java
org.springframework.android.showcase.rest.HttpGetGzipCompressedJsonActivity.java
org.springframework.android.showcase.rest.HttpGetGzipUncompressedActivity.java
org.springframework.android.showcase.rest.HttpGetJsonActivity.java
org.springframework.android.showcase.rest.HttpGetJsonXmlActivity.java
org.springframework.android.showcase.rest.HttpGetParametersActivity.java
org.springframework.android.showcase.rest.HttpGetSetRequestTimeoutActivity.java
org.springframework.android.showcase.rest.HttpGetXmlActivity.java
org.springframework.android.showcase.rest.HttpPostActivity.java
org.springframework.android.showcase.rest.HttpPostFormDataActivity.java
org.springframework.android.showcase.rest.HttpPostJsonXmlActivity.java
org.springframework.android.showcase.rest.HttpPostMultiValueMapActivity.java
org.springframework.android.showcase.rest.HttpPostStringActivity.java
org.springframework.android.showcase.rest.Message.java
org.springframework.android.showcase.rest.StateList.java
org.springframework.android.showcase.rest.State.java
org.springframework.android.showcase.rest.StatesListAdapter.java
org.springframework.android.showcase.rest.TweetListAdapter.java
org.springframework.android.showcase.rest.Tweet.java
org.springframework.android.showcase.rest.TwitterSearchResults.java
org.springframework.android.twitterclient.AbstractAsyncActivity.java
org.springframework.android.twitterclient.AbstractAsyncListActivity.java
org.springframework.android.twitterclient.AbstractWebViewActivity.java
org.springframework.android.twitterclient.AsyncActivity.java
org.springframework.android.twitterclient.MainApplication.java
org.springframework.android.twitterclient.TwitterActivity.java
org.springframework.android.twitterclient.TwitterDirectMessageActivity.java
org.springframework.android.twitterclient.TwitterProfileActivity.java
org.springframework.android.twitterclient.TwitterProfileListAdapter.java
org.springframework.android.twitterclient.TwitterTimelineActivity.java
org.springframework.android.twitterclient.TwitterTimelineListAdapter.java
org.springframework.android.twitterclient.TwitterTweetActivity.java
org.springframework.android.twitterclient.TwitterWebOAuthActivity.java
org.springframework.android.twittersearch.TweetListAdapter.java
org.springframework.android.twittersearch.Tweet.java
org.springframework.android.twittersearch.TwitterSearchActivity.java
org.springframework.android.twittersearch.TwitterSearchResultsActivity.java
org.springframework.android.twittersearch.TwitterSearchResults.java
showcase.Application.java
showcase.Application.java
showcase.FileUploadController.java
showcase.HomeController.java
showcase.HomeController.java
showcase.Message.java
showcase.Message.java
showcase.StateList.java
showcase.State.java
showcase.TimerController.java
showcase.WebSecurityConfiguration.java