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.

I am integrating facebook sdk in my android application with single signon.

Facebook application if installed called but the problem is after authorization my listener does not called.

Here is my code.

facebook.authorize(this, new String[] { "publish_stream", "user_photos", "email" }, 20003, 
            createAuthorizeFacebookDialogListener(facebook,2003));

and here is the listener

private DialogListener createAuthorizeFacebookDialogListener(final Facebook facebook, final int facebookAuthorizeCompleteId)
    {
        DialogListener listener = new DialogListener() {
            @Override
            public void onComplete(Bundle values)
            {
                saveCredentials(facebook);
                showToast("Authentication with Facebook");
                if (messageToPost != null) {
                    postToWall(messageToPost);
                }
            }
            @Override
            public void onFacebookError(FacebookError e)
            {
                showToast("Authentication with Facebook failed!");
                finish();
            }
            @Override
            public void onError(DialogError e)
            {
                showToast("Authentication with Facebook failed!");
                finish();
            }
            @Override
            public void onCancel() {

                showToast("Authentication with Facebook cancelled!");
                finish();
            }
        };
        return listener;
    }

control does not come back after authorizing the application.

Please help me in this.

share|improve this question
maybe there is an error in your saveCredentials? As this looks ok – jiduvah Jan 11 at 9:40
control does not comes inside the listener at all. – Ankit HTech Jan 11 at 9:42
can you post the log? – jiduvah Jan 11 at 9:45
Are you calling authorizeCallback() from your activity's onActivityResult? – Ming Li Jan 11 at 18:12

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.