2
我喜歡Facebook的按鈕在我的網站,如下創建:我怎樣才能得到確切的Facebook喜歡計數?
<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
}
]
}
我怎樣才能得到確切的計數?
你確定你正在1.5k?你可以給它的鏈接和截圖嗎? –