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'm using iOS SDK 3.1.1 and trying to get both read and publish permission at once. As tutorial says, I'm calling FBSession openActiveSessionWithReadPermissions and in its handler - handler A - call [[FBSession activeSession] reauthorizeWithPublishPermissions only if handler A is called with session state of FBSessionStateOpen.

When I have facebook account is set in iOS 6's setting, reauthorizeWithPublishPermissions's handler - handler B - is called normally, with error argument of nil.

However, if I don't have facebook account set in iOS 6's setting, handler B is called with reauth error named "ErrorReauthorizeFailedReasonUserCancelled" when app is switched to Safari to gain publish permission.

More weird thing is this. In both cases before handler B is called, handler A is called with session state of FBSessionStateOpenTokenExtended.

Are these normal or expected behavior of new SDK? If so, should I not check if error is nil in handler B?

share|improve this question
developers.facebook.com/bugs/… reported it to facebook's bugs tracking system – Josh Chung Nov 2 '12 at 9:58
happens to me too, have you figured out a workaround? – marchinram Nov 29 '12 at 19:16

1 Answer

happened to me and after searching a while I found a solution for that. You have to call reauthorizeWithPublishPermissions in dispatch_async in the handler A of openActiveSessionWithReadPermissions:

dispatch_async(dispatch_get_current_queue(), ^{
    [[FBSession activeSession] reauthorizeWithPublishPermissions:permissions
                                                 defaultAudience:FBSessionDefaultAudienceEveryone
                                               completionHandler:^(FBSession *session, NSError *error) {
                                                   // handle the flow here
                                           }];
});
share|improve this answer
could u provide a complete sample please ? does the dispatch_async have to be called in completionHandler of openActiveSessionWithReadPermissions ? – N-AccessDev Jan 24 at 16:36
yes, you should do this in the completion handler of openActiveSessionWithReadPermissions – haynar Jan 24 at 17:37

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.