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 follow this tutorial https://developers.facebook.com/docs/howtos/androidsdk/3.0/native-login/ for login process. It's working tith facebook native app, but without native app, first it shows an error, then i click Okay, then again click login button, it's working. I don't understand why doesn't work in the first time?

android facebook login error

i don't understand what is the problem? Is it bug?

Updated: Here is the code.

    btnFacebook.setOnClickListener(new View.OnClickListener() {

        public void onClick(View view) {
            Session session = Session.getActiveSession();

            if (!session.isOpened() && !session.isClosed()) {
                session.openForRead(new Session.OpenRequest(
                        UserLoginActivity.this).setPermissions(
                        Arrays.asList("basic_info", "email")).setCallback(
                        statusCallback));
            } 
            else {
                Session.openActiveSession(UserLoginActivity.this, true,
                        statusCallback);
            }
        }
    });


        private class SessionStatusCallback implements Session.StatusCallback {
    @Override
    public void call(Session session, SessionState state,
            Exception exception) {
        if (session.isOpened()) {
            final String token = session.getAccessToken();
            Request.executeMeRequestAsync(session,
                    new Request.GraphUserCallback() {
                        @Override
                        public void onCompleted(GraphUser user,
                                Response response) {
                            if (user != null) { 
                                new AsyncFaceLogin(UserLoginActivity.this)
                                .execute(user.getId(),user.getFirstName(),user.getLastName(),(String)user.getProperty("email"),token);
                            }
                        }
                    });
        }
    }
}
share|improve this question

1 Answer

On your Facebook Developers app dashboard page, make sure the sandbox mode is disabled. Also, you might want to make sure your App ID and API key are correctly set in your code.

share|improve this answer
I did these controls before. – mutkan Jan 25 at 11:37
The problem still continues. I'm sure these settings are correct. – mutkan Jan 28 at 11:03
@mutkan i am facing the same problem ... if you have solved your issue , please share the knowledge. Thanks – Harsh Apr 17 at 9:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.