3

我正在尝试查找特定 URL 在 Facebook 上的点赞数。通常这可以通过使用 REST API 或通过 FQL 查询找到。现在,这些数字似乎报告了不准确的数字。如何找到特定 URL 的点赞、评论和分享的准确总数?

参考 Facebook 帖子(63 个赞)http ://www.facebook.com/permalink.php?story_fbid=340865255940883&id=372915765358

Facebook Graph API(62 个赞)https ://graph.facebook.com/340865255940883/likes?limit=1000

Facebook REST API(7 个赞)http ://api.facebook.com/restserver.php?method=links.getStats&urls=http://www.5x5m.com/facebook/14052/1334966/26367/psyk_forandring_TV3.html

Facebook FQL API(7 个赞)https ://api.facebook.com/method/fql.query?query=SELECT+url%2C+normalized_url%2C+share_count%2C+like_count%2C+comment_count%2C+total_count% 2C+commentsbox_count%2C+comments_fbid%2C+click_count+FROM+link_stat+WHERE+url%3D%22http://www.5x5m.com/facebook/14052/1334966/26367/psyk_forandring_TV3.html%22&access_token=AAAAAAITEghMBAPcyTHSBWwZC9XIM1MhnHHjE3FXh9q2omSLj9DdKGpdUOL1vs0r5MWazG85hgU4xi9AE1ziYRAejuaCExlOTqLpp1VQZDZD

4

1 回答 1

2

请注意:Facebook 正在弃用 REST API https://developers.facebook.com/blog/post/616/最好选择 Graph API/FQL 方法。

最好使用FQL方法,

https://graph.facebook.com/fql?q=SELECT%20url,%20normalized_url,%20share_count,%20like_count,%20comment_count,%20total_count,commentsbox_count,%20comments_fbid,%20click_count%20FROM%20link_stat%20WHERE%20url='http://www.google.com'

这会回来,

{
   "data": [
      {
         "url": "http://www.google.com",
         "normalized_url": "http://www.google.com/",
         "share_count": 4989540,
         "like_count": 1317162,
         "comment_count": 1684401,
         "total_count": 7991103,
         "commentsbox_count": 807,
         "comments_fbid": 396269740024,
         "click_count": 265614
      }
   ]
}
于 2013-12-17T08:40:36.817 回答