I followed Facebook tutorial about how to use the extendAccessTokenIfNeeded -
- (void)applicationDidBecomeActive:(UIApplication *)application
{
[facebook extendAccessTokenIfNeeded];
}
This function is calling the following:
- (void)extendAccessTokenIfNeeded {
if ([self shouldExtendAccessToken]) {
[self extendAccessToken];
}
}
Now I noticed that everytime I launch my app (at least on the simulator) Facebook decides that it "shouldExtendAccessToken". So every launch I get a new token.
I wonder - isn't it strange? shouldn't it happen once in every x days?