开发者

Can I sort the contents by stat from the facebook like button?

开发者 https://www.devze.com 2023-01-21 00:15 出处:网络
Is that possible?sould I combine the like number into mysq开发者_运维问答l?If I understood you correctly you have a set of pages and you want to sort links to them according to their like counters. Yo

Is that possible?sould I combine the like number into mysq开发者_运维问答l?


If I understood you correctly you have a set of pages and you want to sort links to them according to their like counters. You can do this using FQL:

SELECT url, like_count FROM link_stat WHERE url IN("FIRST_URL","SECOND_URL") ORDER BY like_count desc

(see link_stat table)

0

精彩评论

暂无评论...
验证码 换一张
取 消