I am trying to get user email address from Facebook iOS sdk (3.1) but cant seem to find a way to do that. I have added email as the permission in requestToMe
but the FBGraphUser
object returned in
[[FBRequest requestForMe] startWithCompletionHandler:
^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *user, NSError *error) {
}];
Does not have an email property at all. Is there another API call to get user email?
Thanks