Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app, I had integrated Twitter using which user can sign up the app and upon successfull sign up, I was fetching user's detail from Twitter. The app worked on Android 2.2.x and 2.3.x but not on above versions as I was sending request to server on UI thread. So, I changed my implementation used Async task to do the same operation and now it is working fine. However, for doing this, I had used two async tasks, one on the button click and another in onNewIntent(). I am not able to decide whether is this the correct way or there is some other efficient way to do the same. My code is as follows:

Twitter button click

btntwLogin.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            new TwitterLoginAsyncTask(LoginActivity.this).execute();
        }
    });

Async Task that will execute on click of twitter button

private class TwitterLoginAsyncTask extends AsyncTask<Void, Void, Intent>
{
    ProgressDialog pd;
    Context ctx;

    public TwitterLoginAsyncTask(Context ctx)
    {
        this.ctx = ctx;
    }//Constructor

    @Override
    protected void onPreExecute() 
    {
        pd = new ProgressDialog(ctx);
        pd.setMessage("PleaseWait...");
        pd.show();
    }//onPreExecute
    @Override
    protected Intent doInBackground(Void... params) 
    {
        Intent in = null;
        String authUrl = null;
        try {
            authUrl = askOAuth();
        } catch (OAuthMessageSignerException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (OAuthNotAuthorizedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (OAuthExpectationFailedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (OAuthCommunicationException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        in = new Intent(Intent.ACTION_VIEW, Uri
                .parse(authUrl)); 
        return in;  
    }//doInBackground

    @Override
    protected void onPostExecute(Intent in) 
    {
        startActivity(in);
        pd.dismiss();
    }//onPostExecute
}//TwitterLoginAsyncTask

onNewIntent() implementation

protected void onNewIntent(Intent intent) 
{
    super.onNewIntent(intent);
    new GetTwitterUserDetailAsyncTask(LoginActivity.this, intent).execute();
}

Async Task that will execute on onNewIntent()

private class GetTwitterUserDetailAsyncTask extends AsyncTask<Void, Void, String>
{
    Intent in;
    Context ctx;
    ProgressDialog pd;
    public GetTwitterUserDetailAsyncTask(Context ctx, Intent in)
    {
        this.in = in;
        this.ctx = ctx;
    }//Constructor

    @Override
    protected void onPreExecute() 
    {
        pd = new ProgressDialog(ctx);
        pd.setMessage("Please Wait...");
        pd.show();
    }//onPreExecute

    @Override
    protected String doInBackground(Void... params) {
        String tweet = null;
        Uri uri = in.getData();

        if (uri != null && uri.toString().startsWith(Constants.CALLBACK_URL)) 
        {
            String verifier = uri
                    .getQueryParameter(oauth.signpost.OAuth.OAUTH_VERIFIER);

            try 
            {
                // this will populate token and token_secret in consumer
                provider.retrieveAccessToken(consumer, verifier);

                // TODO: you might want to store token and token_secret in you
                // app settings!!!!!!!!
                AccessToken a = new AccessToken(consumer.getToken(), consumer
                        .getTokenSecret());
                storeAccessToken(a);

                // initialize Twitter4J
                twitter = new TwitterFactory().getInstance();
                twitter.setOAuthConsumer(Constants.CONSUMER_KEY,
                        Constants.CONSUMER_SECRET);
                twitter.setOAuthAccessToken(a);
                int userid = twitter.getId();
                if (userid != 0) {
                    User user = twitter.showUser(userid);
                    userName = user.getName();
                    userlocation = user.getLocation();
                    URL userImage = user.getProfileImageURL();
                    userImageUrl = userImage.toString();

                }
                PrefStore.setStr(LoginActivity.this, "name", userName);
                PrefStore.setStr(LoginActivity.this, "city", userlocation);
                PrefStore.setStr(ctx, "acc", "tw");
                System.out.println("Profile info-------------->" + userName
                        + " " + userlocation + " " + userImageUrl);
                // create a tweet
                Date d = new Date(System.currentTimeMillis());
                tweet = "Hi!I am doing survey using Walkability! " + d.toLocaleString();

                // send the tweet
                twitter.updateStatus(tweet);

                // feedback for the user...

            } 
            catch (Exception e) 
            {
                Log.e("Login Activity--On new Intent", e.getMessage());
                //Toast.makeText(ctx, e.getMessage(), Toast.LENGTH_LONG).show();
            }

        }
        return null;
    }//doInBackground

    @Override
    protected void onPostExecute(String tweet) 
    {
        Toast.makeText(ctx, tweet, Toast.LENGTH_LONG).show();
        startActivity(new Intent(LoginActivity.this, ProfileActivity.class));
        LoginActivity.this.finish();
        pd.dismiss();
    }//onPostExecute

}//GetTwitterUserDetailAsyncTask
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.