I have an issue with SSO using the Facebook SDK for Android. The problem occurs only when the native facebook app is installed. When it's not installed, everything works fine, specifically:

Facebook facebook = new Facebook(APP_ID);
facebook.authorize(mActivity, , new DialogListener() {
   ...
});

facebook.isSessionValid(); // returns true

But when the native app is installed, facebook.isSessionValid() still returns false despite the fact that I called the authorize method.

I should add that I created an native Android based facebook app with the hashkey generated from my debug certificate using keytool.

keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64

Any idea about what is going on?

Thanks!

link|improve this question

same here. did you happen to solve this? – liorry Jan 29 at 15:49
@liorry Not yet :( – Amokrane Chentir Jan 29 at 19:33
Tested on 4.0.3 and 2.3.4. I have created a bug report here developers.facebook.com/bugs/166465130126268 but apparently they say it should work. Need to read the documentation again and find what is causing the issue. – Amokrane Chentir Jan 31 at 10:42
See here: stackoverflow.com/questions/4489791/… and here: sean.lyn.ch/2011/07/android-the-facebook-sdk-sso-and-you . I got the same Login failed: invalid_key error in my logcat, so these may provide the right solution. – liorry Jan 31 at 10:44
feedback

1 Answer

up vote 2 down vote accepted

SOLVED! :)

I sure hope this will work for you as well. The problem is that Windows generates an invalid key.

Run this with your app:

try {
   PackageInfo info = getPackageManager().getPackageInfo("**YOURPACKAGENAME**", PackageManager.GET_SIGNATURES);
   for (Signature signature : info.signatures) {
        MessageDigest md = MessageDigest.getInstance("SHA");
        md.update(signature.toByteArray());
        Log.i("PXR", Base64.encodeBytes(md.digest()));
   }
}
catch (NameNotFoundException e) {}
catch (NoSuchAlgorithmException e) {}

Don't forget to get Base64 (http://iharder.sourceforge.net/current/java/base64/).

The generated key is on your logcat, replace the old one with this.

Solution thanks to: http://p-xr.com/implementing-facebook-into-your-app-invalid-key-with-keytool/

link|improve this answer
Glad it worked for you :) However, turns out I was using the right signature even before. It's killing me! – Amokrane Chentir Jan 31 at 15:23
@Amokrane Chentir :) weird... I wonder what else this error can be. – liorry Feb 1 at 10:37
@Amokrane Chentir worked???? :) – liorry Mar 8 at 8:31
Yes! It was definitely an issue in my code, a very stupid one! I was using inheritance and one onActivityResult was overriding the other. Hence: facebook.authorizeCallback wasn't called. – Amokrane Chentir Mar 8 at 9:37
@Amokrane Chentir great! glad it's finally solved for you. – liorry Mar 8 at 10:14
feedback

Your Answer

 
or
required, but never shown

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