I was just checking for the state of FBSession
- (BOOL)hasValidSession {
return (self.session.state == FBSessionStateOpen)
}
Occasionally the state would briefly be changed to FBSessionStateOpenTokenExtended and this would return NO which would bring down my login modal. When I would click connect again it would crash the app for trying to reestablish an active facebook session. So I changed it to
- (BOOL)hasValidSession {
if (self.session.state == FBSessionStateOpen || self.session.state == FBSessionStateOpenTokenExtended) {
return YES;
}
else {
return NO;
}}
My above method works so far but it seems like a hack... What is the best ubiquitous way to check for a valid session in your app?