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.
|
|
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:
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. |
||||
|
|
|
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" |
||||
|
|
|
Try uninstalling your facebook app from your device, then reinstalling. |
|||||
|
|
Another workaround is to supress the sso login method. This can be done like this:
|
|||
|
|
|
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:
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:
|
|||
|
|