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 created a facebook login button from here: http://developers.facebook.com/docs/reference/plugins/login/

and I have the following login button:

 <div class="fb-login-button" scope="email" data-show-faces="true" data-max-rows="3">Login with Facebook</div>

So, when the user accept the permissions, how can I get the user information (in this case the email)? (Using javazcript in client-side)

share|improve this question
Duplicate of his own closed question: facebook.stackoverflow.com/questions/11620797/… – CBroe Jul 24 '12 at 12:16

1 Answer

up vote 1 down vote accepted

Similar to:

Get user's Facebook UID with Javascript but you will need to take this a little further and get their email by looking for email in the response object.

FB.api('/me', function(response) {
    var email = response.email;
});

However, your app will have to request this permission from your users, see Facebook documentation on permissions here: https://developers.facebook.com/docs/authentication/permissions/

share|improve this answer
The script as is is not working into my site. I don't know why is not entering the function. Anyway it was a very good and clear answer for my problem. I will investigate more based on this. Thank you very much. – yenssen Jul 24 '12 at 19:19

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.