I'm using the library SocialLib to add sharing functionality to my app. I'm having real issues with the oAuth callback.
I've created the following Activity to handle sharing:
import oauth.signpost.exception.OAuthCommunicationException;
import oauth.signpost.exception.OAuthExpectationFailedException;
import oauth.signpost.exception.OAuthMessageSignerException;
import oauth.signpost.exception.OAuthNotAuthorizedException;
import android.app.Activity;
import android.app.ProgressDialog;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import com.expertiseandroid.lib.sociallib.connectors.SocialNetworkHelper;
import com.expertiseandroid.lib.sociallib.connectors.TwitterConnector;
import com.expertiseandroid.lib.sociallib.exceptions.NotAuthentifiedException;
public class ShareActivity extends Activity {
protected final static String TAG = "ShareActivity";
private final Activity activity = this;
public static final int SERVICE_TWITTER = 0;
public static final int SERVICE_FACEBOOK = 1;
public static final int SERVICE_LINKEDIN = 2;
// twitter API
protected static String TWITTER_KEY = "";
protected static String TWITTER_SECRET = "";
protected static String TWITTER_CALLBACK = "myapp://twitter";
protected static String stringToShare = "Hello World";
// connectors
private static TwitterConnector twitter;
/**
* @see android.app.Activity#onCreate(Bundle)
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle bundle = this.getIntent().getExtras();
Uri uri = this.getIntent().getData();
if (uri != null && uri.toString().startsWith(TWITTER_CALLBACK)) {
postTweet();
}
else {
switch (bundle.getInt("service")) {
case SERVICE_TWITTER:
twitterAuth();
break;
default:
break;
}
}
}
public void twitterAuth() {
twitter = SocialNetworkHelper.createTwitterConnector(TWITTER_KEY, TWITTER_SECRET, TWITTER_CALLBACK);
}
public void postTweet() {
twitter.authorize(activity);
twitter.tweet(stringToShare);
finish();
}
}
The from the activity (MainActivity) where I want to share from I call the following to launch the ShareActivity:
Intent intent = new Intent(getApplicationContext(), ShareActivity.class);
intent.putExtra("service", ShareActivity.SERVICE_TWITTER);
startActivity(intent);
I'm using an Intent filter so that Twitter (oAuth) can callback to the calling activity:
<activity android:name=".MainActivity" />
<activity android:name=".ShareActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:host="twitter" android:scheme="lifetime"/>
</intent-filter>
</activity>
The flow:
- Use clicks the Share button on the MainActivity.
- We call
startActivity(intent)with the argumentintent(ShareActivity). ShareActivity.onCreate()is called and we start the Twitter oAuth authentication process.- The web browser activity is displayed and the user enters their Twitter credentials.
- Twitter then displays a redirecting back to application page.
- Twitter calls back to the URL
myapp://twitter - The intent filter is triggered resulting in a new activity instance of ShareActivity being created and displayed.
- ShareActivity then sends the Tweet to Twitter and the Tweet is successfully posted to the users wall.
- ShareActivity then calls
finish()
Problem
Everything works up until point 9. Calling finish() does not return to the original MainActivity it just closes the ShareActivity and returns to the browser activity showing the "Redirecting you back to the app" page.
If the user hits the back button they are taken back through all the Twitter auth pages and then eventually back to the MainActivity.
What should happen
When the Tweet is posted and we've finished with the ShareActivity the original MainActivity should be returned to (in it's original state).
ShareLib is handling all the auth and posting steps and I have no control on how it creates the new activities.
When I create my ShareActivity I've tried sending the Flag FLAG_ACTIVITY_NEW_TASK with the idea that it would create a new activity stack but I don't know how to close all the activities in that stack and return to MainActivity.
Any help would be really appreciated.