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.

Always getting Session state:CLOSED_LOGIN_FAILED, token:{AccessToken token:ACCESS_TOKEN_REMOVED in facebook android sdk3.0. Even when i run the examples given by the facebook sdk its authenticating and not redirecting it to next flow.it displays the previous page itself.

share|improve this question
1  
Did you manage to fix this bug? I'm also having it and I don't think that you got a correct answer yet – powerX Apr 24 at 16:41

5 Answers

For some reason, the hash that the keytool is generating for me isn't the same as my app. This is what worked for me. Generate a hash using the standard code provided by facebook:

PackageInfo info = getPackageManager().getPackageInfo("<your_package_name>",  PackageManager.GET_SIGNATURES);

for (Signature signature : info.signatures)
    {
        MessageDigest md = MessageDigest.getInstance("SHA");
        md.update(signature.toByteArray());
        Log.d("KeyHash:", Base64.encodeToString(md.digest(), Base64.DEFAULT));
    }

Make sure to replace "your_package_name>" with your corresponding package name. Look at logcat and grab the keyhash and enter it in your facebook app settings.

share|improve this answer

I faced the same problem but the solution was that I had to enter to facebook (developper.facebook) and in my apps settings and add the keys that If used and add the package name I it doesn't help you try to access this link for other solution: "Android Facebook SDK 3.0 gives "remote_app_id does not match stored id" while logging in"

share|improve this answer

Try uninstalling your facebook app from your device, then reinstalling.

share|improve this answer
I have tried that but it's not helping – kumar Feb 4 at 12:56
Interesting. I'm having the same problem and after uninstalling the facebook app, the authentication works. I've filed a bug on developer.facebook.com for this, fyi: developers.facebook.com/bugs/… – Karim Varela Feb 4 at 16:40

Another workaround is to supress the sso login method. This can be done like this:

LoginButton authButton = (LoginButton) view.findViewById(R.id.authButton);
authButton.setLoginBehavior(SessionLoginBehavior.SUPPRESS_SSO);

Source: Android - Force Facebook connexion - Stack Overflow

share|improve this answer

The ACCESS_TOKEN_REMOVED has nothing to do with the problem. This is simply the Facebook SDK not logging the access token. So you can safely ignore that part of the error.

There are two things that are probable causes of the CLOSED_LOGIN_FAILED:

  1. You have entered incorrect credentials in the Facebook native app itself.

  2. The Android key hash entered in your app settings on developers.facebook.com does not match the key hash of the APK.

To troubleshoot #1 Open the Facebook native app and make sure you are logged in properly and can access content. If you have incorrect credentials entered in the Facebook native app (perhaps you recently changed your password) then the Facebook SDK will repeatedly try to do an SSO using the native app and report back CLOSED_LOGIN_FAILED.

To troubleshoot #2 Just follow the instructions under "Create a Facebook App" on this page, https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/.

The examples provided with the Facebook SDK will fail because the app configuration for the sample apps will not have your debug key hash registered. There are instructions for how to fix this under "Run the Samples" in the same link. Here's a quote:

Put simply, every Android app you'll create will be signed, and you will need to register each app's key hash with Facebook as a security check for authenticity - as we'll see later. But to bypass this check for the SDK samples and to get them up and running quickly, you can add your key hash to your global Facebook Developer profile.

share|improve this answer

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.