The problem I'm having is as the title suggests. I make the authorize() call but am never able to call authorizeCallback() because onActivityResult() is never called. SSO does complete, because it shows the permissions screen (with Don't Allow/Allow) and the app approval is shown on my Facebook settings page. Any ideas? I thought it might have something to do with the launchMode of the activity, but removed "singleInstance" and it didn't make a difference.
As I mentioned above, I can confirm the permissions activity is started in Facebook.java.
try {
Log.e("@@@", "Starting activity");
activity.startActivityForResult(intent, activityCode);
} catch (ActivityNotFoundException e) {
didSucceed = false;
}
For what it's worth, I can confirm the code used below.
I've implemented the authorizeCallback() method in onActivityResult():
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
mStateHolder.getFacebook().authorizeCallback(requestCode, resultCode, data);
}
.. but it's never called. The authorize method I've used is as follows:
facebook.authorize(this, new String[]{ "user_birthday" }, new DialogListener() {
public void onComplete(Bundle values) {
Log.e(TAG, "onComplete()");
// I make a request here..
}
// ...with the other methods as well
}
Other potentially useful info:
EDIT: Urgh! After much searching, I found the problem. There was a rogue Intent.FLAG_ACTIVITY_NO_HISTORY flag in the intent (which doesn't keep the activity in the stack). Thanks everyone for attempting to answer this.
EDIT2: removing launchMode=singleInstance does make a difference too btw.. I started getting the error "Failed to read calling package's signature".
activityCode? A couple times I've accidentally used0, and per the documentation that will not result in a call toonActivityResult()even if theActivityis started withstartActivityForResult(). – LeffelMania May 9 '11 at 2:53