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.

Basically I went through this page and implement my Facebook login.

https://developers.facebook.com/docs/howtos/login-with-facebook-using-ios-sdk/

Next I tried to reopen the session when user opens up the app again with this:

[appDelegate openSessionWithAllowLoginUI:NO];

//The method is:

- (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {
    NSArray *permissions = [[NSArray alloc] initWithObjects:
        @"email", 
        @"user_likes",
        nil];
    return [FBSession openActiveSessionWithReadPermissions:permissions
                                              allowLoginUI:allowLoginUI
                                         completionHandler:^(FBSession *session,
                                                         FBSessionState state,
                                                         NSError *error) {
                                         [self sessionStateChanged:session
                                                             state:state
                                                             error:error];
                                     }];
}

But FBSessionState always comes 0:

/*! One of two initial states indicating that no valid cached token was found */
    FBSessionStateCreated                   = 0,

I tried almost everything, storing and restoring tokendata with FBSessionTokenCachingStrategy, but none of it worked. If I call

[appDelegate openSessionWithAllowLoginUI:YES];

and display LoginUI the session starts, but I don't want to display LoginUI everytime. Can you help me?

share|improve this question
When you said you tried to store/restore data with FBSessionTokenCachingStrategy, you mean that you set it to FBSessionManualTokenCachingStrategy, with the appropriate data (you can test via the class method isValidTokenInformation: in FBSessionManualTokenCachingStrategy. Once you set the token, is the session still in the 'FBSessionStateCreated' state or does it change to the 'FBSessionStateCreatedTokenLoaded' state? – Jai Govindani Mar 17 at 19:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.