I'm trying to call the Facebook authorization from my Android activity, but for some reason it never calls the onActivityResult as it should.
I followed the official tutorial, and I even created a very simple application just in order to try this functionality:
public class SimpleFacebookActivity extends Activity {
private EditText console;
private Facebook facebook = new Facebook(APP_ID);
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
this.console = (EditText)super.findViewById(R.id.console);
this.console.append("Started\n\n");
String text = Integer.toString(super.getIntent().getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY);
this.console.append(text);
this.facebook.authorize(this, new DialogListener() {
@Override
public void onComplete(Bundle values) {}
@Override
public void onFacebookError(FacebookError error) {}
@Override
public void onError(DialogError e) {}
@Override
public void onCancel() {}
});
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
this.console.append("onActivityResult, request code: " + requestCode + "\n\n");
super.onActivityResult(requestCode, resultCode, data);
this.facebook.authorizeCallback(requestCode, resultCode, data);
}
}
I added a TextEdit widget to which I log, and when I run this application all I get is:
Started
0
I checked to see if the FLAG_ACTIVITY_NO_HISTORY is set since they mention it in the tutorial and in another post I saw here on Stack Overflow, but in my case it's not set and so can't be the problem.
How can I fix this problem?