I'm getting a completely useless page when I use the Single Sign on for Facebook's Android SDK.

"You have already authorized happyapp. Press "Okay" to continue.

This page would destroy user experience. How the heck do I get rid of it. Lots of people have been seeing this, but no solution is posted.

Even Facebook admits this is a problem, see: http://forum.developers.facebook.net/viewtopic.php?id=84548

Does anyone know any work-around?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

The way I did it (without additional OAuth solution) was to store off the access token in preferences as Kieveli suggested. When the main activity starts, look up the token from preferences, if it's not there initiate the authorization process and store the resulting token in preferences.

The harder part is to handle token expiration or de-authorization of your app (ie. the token is in preferences, but is no longer valid).

For that case, with every FB API/graph invocation, check for an exception indicating authentication failed. If it fails, initiate the authorization/token storing procedure again.

link|improve this answer
feedback

using the suggestion here, this is the code that worked for me, hope it helps someone

before login do this

SharedPreferences prefs= PreferenceManager.getDefaultSharedPreferences(FacebookLogin.this); 
                        String access_token = prefs.getString("access_token", null); 
                        Long expires = prefs.getLong("access_expires", -1);


                        if (access_token != null && expires != -1)
                        {
                            facebook.setAccessToken(access_token);
                            facebook.setAccessExpires(expires);
                        }


                        if (!facebook.isSessionValid())
                        {
                            facebook.authorize(FacebookLogin.this, new DialogListener() {
...

after you successfully logged in do this

String token = facebook.getAccessToken();
long token_expires = facebook.getAccessExpires();

SharedPreferences prefs= PreferenceManager.getDefaultSharedPreferences(FacebookLogin.this);

prefs.edit().putLong("access_expires", token_expires).commit();

prefs.edit().putString("access_token", token).commit();
link|improve this answer
I think you've missed the point of the question. The code you have posted works fine while the issued FB access token is still valid (~48 hours), but the point is what happens after that. As it stands, after the access token expires you must re-run the Facebook authorization process in order to get another token, which forces the user to deal with the "You have already authorised X" dialog again. c.f. with the pure web scenario where new access tokens are issued without the need for the user to approve it. What's needed is a similar process for native apps. – tomtheguvnor Sep 9 '11 at 18:00
feedback

Bypass the SDK and use your own OAuth solution. Save the Access Token once acquired. Try to use it directly without sending the user to the facebook permission page. Once the token expires, you will need them to grant permission again. With advanced features comes lower level responsibilities (and more work).

link|improve this answer
I believe you. I'm scared of reinventing the wheel, especially with OAuth. Do you have any recommendations for Android + Facebook + OAth? – hunterp Jan 2 '11 at 4:38
I'm using Scribe for a non-Android app. – Kieveli Jan 6 '11 at 13: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.