我的网站上有 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
}
]
}
我怎样才能得到准确的计数?