- (void)facebookViewControllerDoneWasPressed:(id)sender {
NSLog(@"FACEBOOK VIEW CONTROLLER");
NSMutableString *text = [[NSMutableString alloc] init];
// we pick up the users from the selection, and create a string that we use to update the text view
// at the bottom of the display; note that self.selection is a property inherited from our base class
for (id<FBGraphUser> user in self.friendPickerController.selection) {
if ([text length]) {
[text appendString:@", "];
}
[text appendString:user.name];
//[user objectForKey:@"email"];
// [text appendFormat:[user objectForKey:@"email"]];
NSLog(@"EMAIL IS %@", [user objectForKey:@"email"]);
}
// [self fillTextBoxAndDismiss:text.length > 0 ? text : @"Email"];
[self fillTextBoxAndDismiss:text];
}
友達リストのメールアドレスを取得したいです。
FBGraphUser ユーザーを取得しましたが、メールが返されません
これを試しましたが、null が返されます。
NSLog(@"EMAIL IS %@", [user objectForKey:@"email"]);
ここでメールは null です。友達のメールにアクセスすることはできますか?