up vote 1 down vote favorite
1
share [g+] share [fb]

If I put a facebook like button on a webpage, can I use FQL to query the number of users that 'liked' the page?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Yep. Try the following FQL:

SELECT like_count FROM link_stat WHERE url="http://your-web-page-url";

There's more stats available from the link_stat table as well. The table reference is here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.