Where should the token be saved after they are retrieved from a OAuth flow? Is it better to save them in a local database on the phone, or am I missing a better way?

Thanks for the inputs.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

A good way is to save them to the shared preferences object where you retrieve them when you want to send a tweet etc. Like so:

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
final Editor edit = prefs.edit();
edit.putString(OAuth.OAUTH_TOKEN, consumer.getToken());
edit.putString(OAuth.OAUTH_TOKEN_SECRET,consumer.getTokenSecret());
edit.commit();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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