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.

When I use https://developers.facebook.com/docs/reference/fql/link_stat

i got this informations like_count, commentsbox_count , share_count , comments_fbid like_count is the number of times Facebook users have "Liked" the page, or liked any comments or re-shares of this page. can I only get the count of users who clicked on my like button page ?

share|improve this question
you are already getting just remove extra fields from fql. – Hemc Jan 17 at 6:42

1 Answer

You are already getting the like count, just make your fql as below

SELECT like_count FROM link_stat WHERE url=your_url
share|improve this answer
like_count include users who liked my shared url I just want the count of users who clicked on like button not with those who also liked my shared url – Xone Jan 17 at 11:02
in that case you'll have to make query like this SELECT ... FROM user WHERE url=your_url and uid = A OR SELECT ... FROM user WHERE url=your_url and username = A – Syed Salman Raza Zaidi Jan 17 at 11:08

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.