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 am generating Like buttons for each of all my pages, objects or something that can be liked. After that I want to display on a page called "User statistics" all users who liked pages. Searched web - nothing interesting.

Need a server side solution, no JS.

share|improve this question
possible duplicate of Facebook, who liked our fan page? – Wooble Aug 26 '11 at 11:11

1 Answer

up vote 3 down vote accepted

No. There's isn't a summary page. But you can see number of shares/likes by using Graph API, for example

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

share|improve this answer
1+, just a note that this might be possible if the users are connected to his site through Facebook. – ifaour Aug 26 '11 at 11:12
@ifa connected, like ... what? So shares/likes do not show when they're not logged in via FB? – genesis Aug 26 '11 at 11:13
No. let me explain: if you use Facebook connect in your site then you have two type: 1) connected user (who you know his FB ID) 2) non-connected user. Now obviously both types can still use the Like plugin (unless you restrict it by hiding it for non-connected), so if ONLY members (connected users) can use the Like plugin then he can capture that through the egde.create event and store it along with the user id. – ifaour Aug 26 '11 at 12:02

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.