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 want the email address of the user when he/she clicks on the facebook Like button.

Here is the code I'm using:

FB.Event.subscribe('edge.create', function(response) {
  // like clicked
});

But the response only has the HREF.

How do I do this?

share|improve this question
This is not possible due to security-restrictions. – codegod Jun 6 '11 at 8:05

1 Answer

Simply you can't!

Even if the user is going to allow/authorize your application and you were asking for their emails (email permission), users may choose not to share it with you and provide you a proxied Facebook email address instead!

share|improve this answer
1  
yeah correct thanks – Prabhakar Jun 10 '11 at 10:59
@Prabhakar: You are welcome; please accept the answer. – ifaour Jun 10 '11 at 17:30

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.