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 know who clicked "Like" on my website ?

share|improve this question
Is this a programming question? – Dan J Mar 2 '11 at 21:16
If You consider working with the facebook API programming - then Yes. I agree that it is not pure programming quesion. – Udi I Mar 2 '11 at 21:29

5 Answers

up vote 3 down vote accepted

Although some FB social plugins show people who have liked your site (e.g. Likebox), actually this is not possible. You can only know how many they are, but not who they are.

share|improve this answer
That is what I needed to know. thank You – Udi I Mar 2 '11 at 21:47

Using the API, see this example:

https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

FB.Event.subscribe('edge.create',
    function(response) {
        alert('You liked the URL: ' + response);
    }
);

I was actually looking for this answer but found it on that page (I almost believed this thread that it wasn't something you can do)

share|improve this answer

Can you not view your page on facebook with all the users that 'Like' it?

share|improve this answer
I dont have a page on facebook.. – Udi I Mar 2 '11 at 21:04

You can check all of your facebook friend's wall to see your post. Rather, you could try the following

Copy your post link from the address bar.
Go to http://developers.facebook.com/docs/reference/plugins/like/
Paste your link in "URL to like" text box.
Click preview.
You will see the name + photo of your facebook friend in the right side (Yes, you can see only 2 to 3 friends).
If a person liked your post and not your facebook friend, you can't find him :(
share|improve this answer

You can't know who liked it, but you can know count

http://Graph.facebook.com/?id=http://stackoverflow.com

change http://stackoverflow.com with liked site

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.