2

我的网站上有 Facebook like 按钮,创建如下:

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2fexample.com&layout=button_count&show_faces=false&width=110&action=like&colorscheme=light&height=35"
  scrolling="no" frameborder="0"
  allowTransparency="true">
</iframe>

此刻的点赞数显示为1,5 k。我想得到喜欢的确切数量。

我试图查询http://graph.facebook.com/?id=http%3A%2F%2Fexample.com,但我得到的回应是:

{
   "id": "http://example.com",
   "shares": 349
}

我也尝试过使用 FQL:

http://graph.facebook.com/fql?q=SELECT 
                                  like_count,total_count,click_count,commentsbox_count
                                FROM link_stat
                                WHERE url='http%3A%2F%2Fexample.com'

回应是:

{
   "data": [
     {
       "like_count": 251,
       "total_count": 349,
       "click_count": 0,
       "commentsbox_count": 0
    }
  ]
}

我怎样才能得到准确的计数?

4

1 回答 1

1

确切的计数是您在此处看到的 total_count。出于某种原因,Facebook 将评论和分享视为喜欢按钮。

不要忘记http://example.com不同于https://example.comhttp://www.example.com/ 确保将所有这些别名加起来。

于 2012-10-30T14:14:11.187 回答