0

我正在尝试在“forumeiros”(免费论坛)上的所有帖子上点击“Like”按钮
当我在帖子上按“Like”时,它会随机地喜欢所有下一个帖子,对我来说没有任何意义
使用以下代码生成按钮:

jQuery(document).ready(function() {
    var url = new Array();
    var link = '';
    jQuery('.postbody .topic-title a[name]').each(function(index){
        link = "http://"+document.domain+jQuery(this).attr("href")+"/";
        link = link.replace('#', '/t');
        url.push(link);
    });
    jQuery('p.author').each(function(index){
        jQuery(this).after('<iframe src="http://www.facebook.com/plugins/like.php?href='+url[index]+'&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=55" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:24px;" allowTransparency="true"></iframe><hr> ');
    });
});

这里有两个生成的链接:
http%3A%2F%2Fgmbrdebug-t.forumeiros.com%2Ft2-teste-teste%2Ft2%2F
http%3A%2F%2Fgmbrdebug-t.forumeiros.com%2Ft2-teste-teste%2Ft3%2F

解码:(仅显示设置为 facebook iframe 的 href 属性)

http://gmbrdebug-t.forumeiros.com/t2-teste-teste/t2/
http://gmbrdebug-t.forumeiros.com/t2-teste-teste/t3/

那么,为什么当我首先按“喜欢”时,所有关注者也都“喜欢”了?它们是不同的。

编辑:所有网址都重定向到同一个地方,可能是这样吗?
如果是,有没有办法做到这一点?

4

1 回答 1

1

如果生成的链接重定向到同一个地方,那么 Facebook 将它们视为同一个图节点。这就是为什么喜欢一个人会喜欢他们的“全部”——Facebook 将他们视为唯一的一件事。

您需要为每个帖子设置单独的链接,并将这些链接用于 Facebook 按钮。

于 2012-07-28T22:40:23.867 回答