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.

Can I get a user ID that clicked "Like" on one of my pages? I tried to make it through the FQL but so far unsuccessful.

And can I put "Like" button for post on facebook to my site? For example I have some post on my facebook page and I want to let the user click "Like" for this post while he or she on my site.

Thanks

share|improve this question

1 Answer

You would need to prompt the user for user_likes extended permission for that FQL query to work.

To have them like a Facebook wall post, you would need to prompt for publish_stream extended permission and then do an HTTP POST to /postid/likes

share|improve this answer
Thanks but the problem is that I want all the users who clicked "like" and not only friends of user. Is it possible? And if I call $fql->api('/postid/likes') it will return users who like this post isn't it? – Olenin Slava Nov 12 '11 at 10:52
Facebook wont give you all the users who like your page due to privacy reasons. – BK. Nov 12 '11 at 15:48

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.