I'm using the FBFriendPickerViewController to show all my friends, and then when i select one (multipleselection disabled) i want to get his name and username.
Could someone explain me why the name of the user returns right and the username returns null?
- (void)facebookViewControllerDoneWasPressed:(id)sender {
for (id<FBGraphUser> friend in self.friendPickerController.selection) {
NSLog(@"%@", friend.name);
NSLog(@"%@", friend.username);
}
}
Which is the best way to retrieve my friends username?
Thanks!