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