Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i need help to get facebook user's email. here's what I did.

https://graph.facebook.com/me?scope=email&access_token=xxxxxxxxxxxxxxxx

the result I got back has no email in it.

            {
               "id": "7027110",
               "name": "John Mike",
               "first_name": "John",
               "last_name": "Mike",
               "link": "http://www.facebook.com/john.mike",
               "username": "john.mike",
               "location": {
                  "id": "11241875545",
                  "name": "Oakland, New Jersey"
               },
               "gender": "male",
               "timezone": -5,
               "locale": "en_US",
               "verified": true,
               "updated_time": "2011-12-07T16:53:47+0000"
            }

also tried to change scope=email to fields=email, still does not work. whats missing, please help me out

share|improve this question
I don't think you're meant to be able to get that information. It's not available to normal users. It'd also lead to severe spam issues. – Polynomial Dec 8 '11 at 16:43
It could be that they just don't have a public email :( here try this: https://graph.facebook.com/me/fql?access_token=<your access token>&q=select%20name,email%20from%20user%20where%20uid=me() or https://graph.facebook.com/me/fql?access_token=<your access token>&q=select%20name,email%20from%20user%20where%20uid%20in%20(select%20uid2%2‌​0from%20friend%20where%20uid1%20=me()) – Brian Colvin Dec 8 '11 at 16:49
whatever I did is correct. however, I didnt have permission to query user's email. In order to do that. the first time user login, i need to ask htem to give me permission. – feelexit Dec 8 '11 at 18:01

1 Answer

Did you obtain the email extended permission from the user? You can check which permissions your access token has been granted with a call to /me/permissions

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.