Whilte testing my app, I noticed that everytime the user logged in, the authentication dialog was displayed. This, of course, wasn't quite normal, as the user should authenticate at most only once.
At first, I thought it was because I was directly using Session and OpenRequest classes and maybe I didn't know to properly handle them. So I decided to use the most simple login method, using com.facebook.widget.LoginButton.
com.facebook.widget.LoginButton btn = (com.facebook.widget.LoginButton) findViewById(R.id.lb);
btn.setApplicationId("xxxxxxxxxxxxxxxx");
btn.setReadPermissions(Arrays.asList("xxxxxxx", "xxxxxx"));
// if i put SessionLoginBehavior.SSO_WITH_FALLBACK, it works, but I'm testing SSO
btn.setLoginBehavior(SessionLoginBehavior.SSO_ONLY);
btn.setSessionStatusCallback(new StatusCallback() {
@Override
public void call(Session session, SessionState state, Exception exception) {
// TODO Auto-generated method stub
Log.v("dbg", "state: " + state);
Log.v("dbg", "session: " + session);
Log.v("dbg", "exception: " + exception);
}
});
As you can see, I force the Login Behaviour to be SSO_ONLY, to test this.
Before I tested this, I went in the emulator's browser and logged in to m.facebook.com so there is already a signed in account.
Then I ran my app and... surprise!
01-22 12:08:19.971: V/dbg(1282): exception: com.facebook.FacebookAuthorizationException: Login attempt failed.
As I expected, SSO didn't work. To check it wasn't a different problem, I changed the login behaviour to
btn.setLoginBehavior(SessionLoginBehavior.SSO_WITH_FALLBACK);
and this time the authentication dialog was displayed and I was able to login after introducing the username and password.
This is how my app is configured on Facebook:
http://img824.imageshack.us/img824/8715/screenshot2fq.png
The hash is double checked ( I used both keytool and the PackageInfo method and the same hash resulted so I am 100% confident it's not the hash that is wrong).
Bottom line, SSO doesn't work for me. Any ideas?
LATER EDIT
I also ran the facebook sdk samples and again, SSO didn't work, prompting everytime for username/password.