2011-02-18 30 views
1

我试图在同一页上添加多个“赞”按钮,但指定如不同的URL获得同Facebook的“赞”计数不同的URL

我有2个网址,我想“赞”上单独的页面

http://www.spoilertv.com/search/label/Brothers%20And%20Sisters http://www.spoilertv.com/search/label/Better%20With%20You

这里是我的代码。

Better With You <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBetter%2520With%2520You&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe> 
Brothers and Sisters <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBrothers%2520And%2520Sisters&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe> 

问题是他们都显示相同的“喜欢”数。

我在做什么错?

预先感谢任何帮助

回答

1

IMO的问题是空间(%20)在Facebook iframe中转换为(%2520)。

尝试使用空间的Unicode(20%)直接:

Better With You <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBetter%20With%20You&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe> 
Brothers and Sisters <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.spoilertv.com%2Fsearch%2Flabel%2FBrothers%20And%20Sisters&amp;layout=button_count&amp;show_faces=false&amp;width=150&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:150px; height:21px;" allowTransparency="true"></iframe> 

希望它能帮助:)

0

一种解决方案是不是很好,但将努力: 做一个Facebook页面的每个URL。 然后在您的网站上使用likeboxes。

+0

请投票,如果你觉得它有用。 – 2011-02-18 12:01:48

相关问题