Reputation: 375
How to get the number of Likes in facebook like button?
Here is my scenario, I have five like buttons, I want to sort the buttons based on the number of likes. Is it possible?
Upvotes: 0
Views: 333
Reputation: 111265
You can get number of likes for any URL by running FQL on link_stat
table:
SELECT like_count, url FROM link_stat WHERE url IN("FIRST_SHARE_URL","SECOND_SHARE_URL") ORDER BY like_count
then display buttons in corresponding order.
Upvotes: 1
Reputation: 382696
There is a button_count
settings which once specified, will display the counts to the right of the button.
More Info:
Upvotes: 0