문제

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?

도움이 되었습니까?

해결책

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.

다른 팁

There is a button_count settings which once specified, will display the counts to the right of the button.

More Info:

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top