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 have some troubles with Facebook Login with iOS.

When I click on my "Login" button, the app correctly goes on Facebook, get token, then comes back and returns a correct token. BUT:

If I try a get query like

NSString *query = @"SELECT name from user where uid= me()";

The result data is null. If I try the same query in my web browser with facebook logged in, the query works fine. Seems like my iOS app dont get the me() command, like I'm not logged in.

I do my facebook connection in this way:

- (IBAction)buttonClickHandler:(id)sender {
// get the app delegate so that we can access the session property
AppDelegate *appDelegate = [[UIApplication sharedApplication]delegate];

// this button's job is to flip-flop the session from open to closed
if (appDelegate.session.isOpen) {

    [appDelegate.session closeAndClearTokenInformation];        

} else {

    if (appDelegate.session.state != FBSessionStateCreated) {
        appDelegate.session = [[FBSession alloc] init];
    }


    [appDelegate.session openWithCompletionHandler:^(FBSession *session,  FBSessionState status,  NSError *error) {

        [self updateView];

    }];
}

}

share|improve this question

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.