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 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?

share|improve this question
what version of the Facebook app do you have? Also, can you check if your "call()" method in the StatusCallback is called, and whether there's an exception? – Ming Li Feb 11 at 17:43

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.