This function can migrate your existing token state by overwriting the default sdk cached token state with the parameters you pass in:
private final void migrateToken(String accessToken, long expiresMilliseconds,
List<String> permissions, boolean isSSO,
long lastRefreshMilliseconds) {
Bundle bundle = new Bundle();
TokenCache.putToken(bundle, accessToken);
TokenCache.putExpirationMilliseconds(bundle, expiresMilliseconds);
TokenCache.putPermissions(bundle, permissions);
TokenCache.putLastRefreshMilliseconds(bundle, lastRefreshMilliseconds);
TokenCache.putIsSSO(bundle, isSSO);
SharedPreferencesTokenCache cache = new SharedPreferencesTokenCache(this);
cache.save(bundle);
}
If you don't have permissions saved, you should just pass the list of permissions you requested when you got the token or an empty ArrayList if you did not ask for any or do not know.
The isSSO parameter specifies whether you got the token using Facebook Login / SSO with the facebook app (true), or the login WebView (false). Tokens obtained via Facebook Login can be extended, and this boolean controls whether the SDK should automatically attempt to extend the token.
This function overwrites the state that is read by the Session constructor. So if you call the function, you will need to construct a Session afterwards to use it. The logic might look like:
Session session = Session.openActiveSession(this);
if ((session == null) && hasOldTokenState()) {
migrateToken(...);
session = Session.openActiveSession(this);
}
// if session is still null, user will have to log in...