I'm getting an 'invalid_key' error when attempting to authenticate to Facebook using the SSO. It works fine without the app, but with the app installed I get the error. I used the following command to obtain my hash:
keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1 -binary | openssl base64
However, even after supplying this to Facebook I'm still getting the error. Here's my code, if it's any use:
if(!facebook.isSessionValid()) {
facebook.authorize(this, new String[] {"publish_stream", "offline_access"}, new DialogListener() {
@Override
public void onComplete(Bundle values) {
SharedPreferences.Editor editor = mPrefs.edit();
editor.putString("access_token", facebook.getAccessToken());
editor.putLong("access_expires", facebook.getAccessExpires());
editor.commit();
}
@Override
public void onFacebookError(FacebookError error) {
Log.d("FacebookError", error.getMessage());
}
@Override
public void onError(DialogError e) {
Log.d("Error", e.getMessage());
}
@Override
public void onCancel() {}
});
}
Can anyone shed any light on this issue? Thanks.
