2012-03-01 172 views
0

我得到一些奇怪的結果與Facebook像按鈕(反正我很奇怪)我有幾個頁面我的網站,但每個按鈕上顯示的喜歡數總是相同的 - 如果網頁不是這樣,並且網頁已經顯示網站本身喜歡的總數,則爲0。Facebook的喜歡按鈕:所有頁面顯示'0喜歡'或'{總數}喜歡'

在用戶信息中心我讓他們「喜歡」我的Facebook頁面,這裏是我使用的iframe:

<iframe src="//www.facebook.com/plugins/like.php? 
href=http://www.facebook.com/myfacebookpage&amp;send=false&amp; 
layout=button_count&amp;width=100&amp;show_faces=true&amp;action=like&amp; 
colorscheme=light&amp;font&amp;height=21&amp;appId={MY ID HERE}" 
scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; 
height:20px;" allowtransparency="true"></iframe> 

然後在用戶的個人資料頁我讓遊客喜歡對方的個人資料頁面。

對於頁http://mywebsite.com/john

<iframe src="//www.facebook.com/plugins/like.php? 
href=http%3A%2F%2Fmywebsite.com%2Fjohn&amp;send=false&amp;layout=button_count 
&amp;width=100&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp; 
font&amp;height=21&amp;appId={MY ID HERE}" scrolling="no" frameborder="0" 
style="border:none; overflow:hidden; width:100px; height:20px;" 
allowtransparency="true"></iframe> 

對於頁面http://mywebsite.com/billy

<iframe src="//www.facebook.com/plugins/like.php? 
href=http%3A%2F%2Fmywebsite.com%2Fbilly&amp;send=false&amp;layout=button_count&amp; 
width=100&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font&amp; 
height=21&amp;appId={MY ID HERE}" scrolling="no" frameborder="0" style="border:none; 
overflow:hidden; width:100px; height:20px;"` allowtransparency="true"></iframe> 

正如你可以看到我傳遞不同的href值每,所以據我可以看到(並閱讀文檔)我正確地做了這件事......一直在研究這個好幾個小時,沒有快樂。有人遇到類似的?

回答