I'm trying to create a Facebook Connect Button and i need to get for this the FBGraphUser when i'm connected. I have the following code on my Button :
-(IBAction)fbButtonClickHandler:(id)sender {
mainDelegate = (AppDelegate*)[[UIApplication sharedApplication]delegate];
if (mainDelegate.fbSession.isOpen) {
[mainDelegate.fbSession closeAndClearTokenInformation]; // FB delog
}
else {
if (mainDelegate.fbSession.state != FBSessionStateCreated) {
mainDelegate.fbSession = [[FBSession alloc] initWithPermissions:[NSArray arrayWithObjects:@"email", @"publish_actions", @"user_birthday",nil]];
}
// loggin on facebook
[mainDelegate.fbSession openWithCompletionHandler:^(FBSession *session,
FBSessionState status,
NSError *error) {
[fbButton setTitle:[self updateFbButtonLabel] forState:UIControlStateNormal];
// reading the documentation i'm trying this to get the FBGraphUser
if(session.isOpen) {
[FBRequestConnection startForMeWithCompletionHandler:^(FBRequestConnection *connection, id<FBGraphUser> user, NSError *error) {
if (!error) {
NSString *userInfo = @"";
// Example: typed access (name)
// - no special permissions required
userInfo = [userInfo
stringByAppendingString:
[NSString stringWithFormat:@"Name: %@\n\n",
user.name]];
// Example: typed access, (birthday)
// - requires user_birthday permission
userInfo = [userInfo
stringByAppendingString:
[NSString stringWithFormat:@"Birthday: %@\n\n",
user.birthday]];
// Display the user info
NSLog(@"%@", userInfo);
}
NSLog(@" error: %@" , error);
}];
}
}
}];
}
}
The problem is that i'in the console when i call startForMeWithCompletionHandler
Error: HTTP status code: 400
FBSDKLog: Response <#1111> <Error>:
The operation couldn’t be completed. (com.facebook.sdk error 5.)
(null)
error: Error Domain=com.facebook.sdk Code=5 "The operation couldn’t be completed.
(com.facebook.sdk error 5.)" UserInfo=0x925f760 {com.facebook.sdk:ParsedJSONResponseKey=
<CFBasicHash 0x9367d60 [0xe41b38]>{type = mutable dict, count = 2,
entries =>
1 : <CFString 0x1b9410 [0xe41b38]>{contents = "code"} = <CFNumber 0x9366d60 [0xe41b38]>
{value = +400, type = kCFNumberSInt32Type}
2 : <CFString 0x1b9340 [0xe41b38]>{contents = "body"} = <CFBasicHash 0x93670b0
[0xe41b38]>{type = mutable dict, count = 1,
entries =>
11 : <CFString 0x9367c90 [0xe41b38]>{contents = "error"} = <CFBasicHash 0x9366e80
[0xe41b38]>{type = mutable dict, count = 3,
entries =>
2 : <CFString 0x9366850 [0xe41b38]>{contents = "type"} = <CFString 0x9367300
[0xe41b38]>{contents = "OAuthException"}
3 : <CFString 0x93672a0 [0xe41b38]>{contents = "message"} = <CFString 0x9367200
[0xe41b38]>{contents = "An active access token must be used to query information about
the current user."}
6 : <CFString 0x9367c80 [0xe41b38]>{contents = "code"} = 2500
am I missing something ? Thanks for your answers !