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 this code to get the name and ID of facebook and I implemented the facebook sdk 3.1

    FBRequest *me = [FBRequest requestForMe];    
    [me startWithCompletionHandler:^(FBRequestConnection *connection,
                                         id result,
                                         NSError *error)     {

            NSDictionary<FBGraphUser> *my = (NSDictionary<FBGraphUser> *) result;
            NSLog(@"My dictionary: %@", my.name);
            NSLog(@"My dictionary: %@", my.id);
  }];

works perfect for ios 5.1 but trying to do it in 6.0 does not work the same goes for wanting to get the acces_token

NSString *token =[[FBSession activeSession] accessToken];

iOS 5.1 on what I can get but not in 6.0

and this is the login flow

[FBSession openActiveSessionWithReadPermissions:[NSArray arrayWithObjects:@"user_about_me", nil] allowLoginUI:YES
                              completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
                                  NSLog(@"openSession handler");
                                  }];

thank you very much

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.