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.

while using facebook graph api in authenticating a user, after successful login, i want to get the user email.

For this, i raised a request for user data: https://graph.facebook.com/me?access_token=xxxxxxxxxx

But for my surprise, i could not get user's email in json output... how can i get the email ? Do we need to specify any permissions ?

share|improve this question
I think you can not get the email of user being authenticated – Positive Jan 11 '11 at 12:56
No yar, i could get email of some of the users easily, but for some users, iam unable to get. In the permissions screen itself, the email option does not show up. Is there a way to request permission for user's email ? – dskanth Jan 11 '11 at 13:02
Please, can anyone help me here... iam not able to figure it out... – dskanth Jan 11 '11 at 13:36

1 Answer

up vote 2 down vote accepted

Well yes you do need permission to grab someone's email although some people have their privacy set so that you can get their emails without this expressed permission, most don't.

The permissions need to be set under the login section (it depends on how you login as to how it is presented, so I can't really help you out there unless I have more info).

'user_about_me' is the user permission that you probably already have but you need 'email' to get their primary email.

More information on the permissions for facebook developers can be found here.

I hope this has helped!

Best of luck,

Jon

share|improve this answer
1  
Hi, i could get the user email now, by requesting a permission in my graph api request, by adding: scope=email at the end of my request. :) – dskanth Jan 11 '11 at 14:01
@dskanth: so was the answer helpful? if so, then accept it..otherwise add a new answer with the solution and accept your own answer. – ifaour Jan 11 '11 at 14:36

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.