In my app i am having issues with the facebook sdk.
When i dont have the facebook app installed everything works correctly and my onComplete() callback gets called to let us know the user has signed in successfully.
For some reason when the user has the facebook app installed the onComplete callback does not get called. Im not exactly sure why this is happeneing, but here is my code of how i initiate the log in.
Session.openActiveSession(activity, true, new Session.StatusCallback() {
@Override
public void call(Session session, SessionState state,
Exception exception) {
if (session.isOpened()) {
Request.executeMeRequestAsync(session,
new Request.GraphUserCallback() {
@Override
public void onCompleted(GraphUser user,
Response response) {
Log.e("Complete", "Complete");
if (user != null) {
String name = user.getFirstName();
editor.putString("user_name", name);
editor.commit();
preference.getString("user_name", name);
username = new Text(10, 35, font,
"Welcome " + name, vbom);
}
SceneManager.getInstance().refreshMainMenu();
}
});
}
}
});
Here is my onActivityResult method:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
Session.getActiveSession().onActivityResult(this, requestCode,
resultCode, data);
}
Anyone ever encounter this?