Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an Android client with GAE backend and I am using the phone accounts for authentication.

After I retrieve the authentication cookie from GAE, I can make authenticated calls to the server, but as soon as the application is closed, when the app re-launches, I have to run the auth proces again, ask for e new cookie. Is there a way to store that Cookie object and check for it after the first time the auth happens so I don't have to do it every time the app launches?

share|improve this question
Why not just re-authenticate? It won't require prompting the user. – Nick Johnson Jun 28 '11 at 2:26
I wold like to avoid and extra server call if possible. – oviroa Jul 1 '11 at 20:36

2 Answers

Sounds like a good use for the SharedPreferences

PreferenceManager.getDefaultSharedPreferences().edit().putString("cookie", myCookie).commit();
String myCookie = PreferenceManager.getDefaultSharedPreferences.getString("cookie", null);
share|improve this answer
Ok, so this stores the cookie value as a string, which may be sufficient. I was wondering if there was a way to store a loaded instance of the Cookie class. – oviroa Jun 27 '11 at 22:44
same way, just serialize the cookie class and write it to your preference. – schwiz Jun 27 '11 at 23:01
Good idea, will do that. – oviroa Jun 28 '11 at 0:14

If you want to leverage functionality of the already implemented provider you should use AccountManager:

AccountManager am = AccountManager.get(MyActivity.this);
Account[] aArray = am.getAccountsByType(ACCOUNT_TYPE);
/* choose correct account from the resulting array */
/* ex. Account a = aArray[0]; */
try {
  String token = am.blockingGetAuthToken(a, Constants.AUTHTOKEN_TYPE, false);
} catch (OperationCanceledException e1) {
  e1.printStackTrace();
} catch (AuthenticatorException e1) {
  e1.printStackTrace();
} catch (IOException e1) {
  e1.printStackTrace();
}

You should override getTokenType() method of your account authenticator to return GAE authentication cookie in the result bundle under the key AccountManager.KEY_AUTHTOKEN. Refer to AccountManager class description for detailed authentication procedure.

share|improve this answer
My question was more about how to store that cookie that gets set as the auth token comes back from GAE after authentication with the account. – oviroa Jun 27 '11 at 22:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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