Can I sort the contents by stat from the facebook like button?
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)
精彩评论