I'm using Facebook's PHP SDK to register the user via Facebook in my website and sometimes I notice the email info is missing in the user's graph, however, I have a valid access token with email permission.
Here is the URL where I'm sending the users to authenticate:
https://www.facebook.com/dialog/oauth?client_id=[FACEBOOK_APP_ID]&redirect_uri=[REDIR_URL]&**scope=email**,publish_stream,publish_actions,user_about_me,user_birthday,user_hometown,user_location,user_website
If I check https://graph.facebook.com/[USER_ID]/permissions?access_token=[ACCESS_TOKEN] I can see the following:
"data": [{
"installed": 1,
"status_update": 1,
"photo_upload": 1,
"video_upload": 1,
**"email": 1,**
"create_note": 1,
"share_item": 1,
"publish_stream": 1,
"publish_actions": 1,
"user_birthday": 1,
"user_hometown": 1,
"user_location": 1,
"user_website": 1,
"user_about_me": 1
}]
Checking the user's details on https://graph.facebook.com/[USER_ID]/?access_token=[ACCESS_TOKEN] shows up everything, but the email field is missing.
Where can be the problem? Please let me know if there are some details that can be useful in order to investigate this.
Thank you for your suggestions in advance.

https://graph.facebook.com/me/?access_token=[ACCESS_TOKEN]? – Yan May 31 '12 at 8:31