views:

47

answers:

1

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

+2  A: 

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.

zombat

related questions