I was wondering if anyone knew why the FBSessionDidSetActiveSessionNotification, FBSessionDidUnsetActiveSessionNotification, FBSessionDidBecomeOpenActiveSessionNotification or FBSessionDidBecomeClosedActiveSessionNotification never gets fired when I open a new FBSession session?
The only way I got to detect the FBSessionDidBecomeOpenActiveSessionNotification & FBSessionDidSetActiveSessionNotification is when I call [FBSession setActiveSession:]; explicitly.
Basically, I got something like that:
_session = [[FBSession alloc] initWithAppID: FACEBOOK_AppId
permissions: _facebookPermissions
defaultAudience: FBSessionDefaultAudienceOnlyMe
urlSchemeSuffix: nil
tokenCacheStrategy: nil];
[_session openWithCompletionHandler:^(FBSession *session,
FBSessionState status,
NSError *error) {
[FBSession setActiveSession: _session];
// ...
}];
Is that normal that I have to call [FBSession setActiveSession:]; ?