Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:]; ?

share|improve this question

2 Answers

Try this:

+ (BOOL)openActiveSessionWithPermissions:(NSArray*)permissions
                        allowLoginUI:(BOOL)allowLoginUI
                   completionHandler:(FBSessionStateHandler)handler;
share|improve this answer
Yeah that works too... But it's deprecated. So I probably shouldn't use it now. – James Laurenstin Oct 9 '12 at 5:11
I don't think it is.. See here developers.facebook.com/ios/change-log-3.x – KarenAnne Oct 9 '12 at 7:56
Well look in FBSession.h for Facebook SDK 3.1. Here's the declaration of that method; It's deprecated by Facebook (see __attribute__((deprecated))); – James Laurenstin Oct 9 '12 at 14:31
in 3.1 you have to request read permission and write permissions separately. Use openActiveSessionWithReadPermissions for login. Later when you need to publish/write, use reauthorizeWithPublishPermissions:defaultAudience:completionHandler. See this: developers.facebook.com/docs/tutorial/iossdk/… – Edwin Iskandar Oct 10 '12 at 16:08
1  
Facebook suggest using openActiveSessionWithReadPermissions:allowLoginUI:completionHandler: or openActiveSessionWithAllowLoginUI see documentation developers.facebook.com/docs/tutorial/iossdk/… – James Laurenstin Oct 14 '12 at 20:51
show 1 more comment

Use

+ (BOOL)openActiveSessionWithReadPermissions:(NSArray*)readPermissions
                            allowLoginUI:(BOOL)allowLoginUI
                       completionHandler:(FBSessionStateHandler)handler;

That is really just a helper function for doing something similar to what you're already doing, though. If you grab the source from the git repo, you can see what's going on in FBSession.m.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.