SuperFrog
SuperFrog

Reputation: 7674

How to know who clicked the Facebook "Like" button on my site?

Can I know who clicked "Like" on my website ?

Upvotes: 9

Views: 23519

Answers (5)

Matt
Matt

Reputation: 5567

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)

Upvotes: 5

Sajid Holy
Sajid Holy

Reputation: 61

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 :(

Upvotes: 6

genesis
genesis

Reputation: 50982

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

Upvotes: 2

mpj
mpj

Reputation: 5367

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.

Upvotes: 11

FreeAsInBeer
FreeAsInBeer

Reputation: 12979

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

Upvotes: 2

Related Questions