I developing a Login/Inscription with Facebook to my website, and sometime some persons can't register with it.
So, I saw my logs that contains this sentence " Email not found " that happing when I want to get the email from the Facebook response API.
The code :
FB.api('/me',
{fields: "email,first_name,last_name"},
function(response) {
});
But the problem, it's work with 80% of persons, and with some search and filtering, I found that this problem happing when the user does his inscription with phone number os when he/she didn't activate the email.
The problem here is I need the Email for some reason ( The contact with the user if he/she win).
is there any solution?