For Facebook sdk 3.1.1, I had to create a new class FBSessionManualTokenCachingStrategy, which is a subclass of FBSessionTokenCachingStrategy and defines the fetchTokenInformation method as
- (NSDictionary*)fetchTokenInformation; { return [NSDictionary dictionaryWithObjectsAndKeys: self.accessToken, FBTokenInformationTokenKey, self.expirationDate, FBTokenInformationExpirationDateKey, nil]; }
source share