We are doing an app for facebook & we are requested permission for grab his information,
Now the problem is that we need the user e-mail id is show in our data or console.(There show the users all details like First_name, last_name, gender, education, id , etc..)
We are use this code :-
else
{
NSArray* _permissions = [NSArray arrayWithObjects:@"email",@"user_birthday",@"publish_stream",nil];
[appDelegate.Facebook authorize:_permissions delegate:self appAuth:NO safariAuth:NO];
}
Is there any other way to show the e-mail now? Any one solve my this problem or suggest me what i will do?
Thanks..
emailin order to view their email. Use the/me?fields=emailendpoint after the authorization to get their email. – Tommy Crush Jan 11 at 17:59