Get Facebook “Like” count for every page on my domain

前端 未结 8 900
孤独总比滥情好
孤独总比滥情好 2020-12-07 13:35

I have integrated the Facebook \"Like\" button into a lot of pages in my site. I want to display the most \"Liked\" pages on my site in a list, but I can\'t figure out how

8条回答
  •  旧巷少年郎
    2020-12-07 14:15

    After some looking around, we may be better off using FQL with graph API:

    http://graph.facebook.com/fql?q=select%20comment_count%2C%20share_count%2C%20like_count%20from%20link_stat%20where%20url%20%3D%20%22http%3A%2F%2Fmashable.com%2F2013%2F01%2F30%2Ffacebook-twitter-blackberry-10%2F%22

    Results are

    {
       "data": [
          {
             "comment_count": 3,
             "share_count": 91,
             "like_count": 5
          }
       ]
    }
    

提交回复
热议问题