I'm confused here,
I'm trying to get user data using Facebook Api, I'm requesting email permission using scope=email like this:
https://www.facebook.com/dialog/oauth?client_id=MY_APP_ID&redirect_uri=MY_URI&scope=email
In Facebook access confirmation window I see that my application requests access to the email, but even after that when I do request to Graph Api it doesn't return the email (it does return all other fields) If I do a request like this:
https://graph.facebook.com/me?fields=id,name,email&access_token=MY_TOKEN
it only returns id and name.