2011-10-05 99 views
0

我使用這個網址檢索網頁的XML數據:LIKE_COUNT喜歡

https://api.facebook.com/method/fql.query?query=select%20%20share_count,%20like_count,%20comment_count,%20total_count,%20click_count%20from%20link_stat%20where%20url=%27http://www.justinboots.com/en/Justin_America_Zone.html?item_id=266%27&format=xml

返回的數據如下:

<?xml version="1.0" encoding="UTF-8" ?> 
- <fql_query_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" list="true"> 
- <link_stat> 
<like_count>56</like_count> 
</link_stat> 
</fql_query_response> 

或LIKE_COUNT 56;然而,我的Facebook小部件顯示84個喜歡。

如果我喜歡一個頁面,兩個計數都會遞增1.如果點擊不同,則兩者都會減少1. like_count和facebook widgetlikes之間有什麼關係?

回答

0

類似插件/ Facebook構件計數器顯示比喜歡更它將顯示TOTAL_COUNT

SELECT total_count FROM link_stat WHERE url='http://www.justinboots.com/en/Justin_America_Zone.html?item_id=266' 

這將返回正確的值。

+0

不幸的是,這是不正確的。例如,還是有區別的。 http://www.o2thinkbig.de/projekt/2105 - total_count爲345,而類似的按鈕則爲418. 有關於此的錯誤報告:https://developers.facebook.com/bugs/169035286562837/ – blueyed