2014-02-25 68 views
0

我有一個網頁,其中有Facebook和分享按鈕與單獨的代碼。但是當我點擊像按鈕時,它也增加了共享按鈕的計數器,當我點擊共享按鈕時,它增加了像按鈕的計數器,但我想保持它分開。FaceBook贊分享計數器問題

代碼:

<div class="fb-share-button" style="float:right; margin:0 0 0 5px;" data-href="pageurl?nid=120" data-type="button_count"></div> 
<div class="fb-like" style="float:right; margin:0 0 0 5px;" data-href="pageurl?nid=120" data-layout="button_count" data-action="like" data-show-faces="true" data-share="false"></div> 

所以,如果你對此有什麼解決方案,那麼請與我分享。

+1

這是一個正常的行爲,因爲'data-href'屬性值是相同的'URL' –

回答

0

這是預期的行爲,因爲要顯示的數字是共享+喜歡+評論的總數。

例如,http://ent.sinchew.com.my/node/47354的頁面在Like按鈕上顯示。

enter image description here

您可以通過link_stat表,例如與FQL得到總喜歡每/評論/股

https://developers.facebook.com/tools/explorer/?fql=SELECT%20click_count%2C%20comment_count%2C%20like_count%2C%20share_count%2C%20total_count%20FROM%20link_stat%20WHERE%20url%20%3D%20 'www.google.com'

enter image description here

正如你可以看到,27 + 672 + 38 = 737,其中737是你看到喜歡按鈕總。即使你把分享按鈕,而不是喜歡按鈕,總數是相同的,即737