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 am building an app, which uses facebook authorisation services. However, I am facing problems in two cases

  1. The user is sent to the facebook app for giving permission. Instead, she presses the home button and again opens my app. In this case, I need to do two things: a. Re-show her the login page (and remove the animation from that page): For this I need to know that the user has come back to the app without logging into fb. b. Cancel the last request sent to fb: If user tries to login again, my app sends two requests to the fb authorisation system, which leads to two popup windows in the fb app and also gives back multiple calls to my app.

  2. The user presses the cancel button: In this case fb app is not re-directing to my app. I read that this was a bug and has been fixed; however, this still this does not work for me. Any suggestions?

I have tried to search for similar Q on the forum; however, have not been able to find exact answer. Please let me know if I missed looking at relevant question.

share|improve this question
anyone has any clue? – theoryPractitioner Nov 5 '12 at 4:16
seriously, no one? – theoryPractitioner Nov 6 '12 at 8:48

1 Answer

If you're using the Facebook SDK 3.1 for iOS, then

- (void)applicationDidBecomeActive:(UIApplication *)application {
    [FBSession.activeSession handleDidBecomeActive];

}

Will cancel the auth request if the user happened to cancel the auth flow via doing something like hitting the Home button. You can then reset by showing your login view again.

The (2) problem should be fixed if you upgrade to the latest Facebook iOS app.

share|improve this answer
Thanks! What would work for sdk 3.0? Currently, I am doing the following: Check in appdelegate's applicationdidbecomeactive if the FBSession state is FBSessionStateCreatedOpening. If yes, then reset the activeSession with required permission set. This step changes the state of FBSession to FBSessionStateClosedLoginFailed and calls the completion handler (as the state has changed). Check for FBSessionStateClosedLoginFailed state in the completion handler and reset the interface accordingly. However, this looks more like a hack and i would be happy to use a better method. – theoryPractitioner Nov 9 '12 at 6:27
Any reason you don't want to move to 3.1? Then you could rely on the non-hacky way. – C Abernathy Nov 9 '12 at 17:58
I will eventually move to 3.1, just that, I have already coded everything and do not have enough time to change. – theoryPractitioner Nov 10 '12 at 10:18
For 3.0, try this: - (void)applicationDidBecomeActive:(UIApplication *)application { // this means the user switched back to this app without completing a login in Safari/Facebook App if (FBSession.activeSession.state == FBSessionStateCreatedOpening) { [FBSession.activeSession close]; // so we close our session and start over } } – C Abernathy Nov 12 '12 at 19:14

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.