2

我在我的个人网页上添加了一些类似的按钮:edoardo.torreggiani.net但只有一个按钮可以正常工作。

这工作(主页):

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fedoardo.torreggiani.net&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21&amp;locale=en_US" scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: 100px; height: 21px; " allowtransparency="true"></iframe>

这不起作用(主页上的单个帖子):

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fedoardo.torreggiani.net%2Fhome%3Fpost%3D5&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21&amp;locale=en_US" scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: 100px; height: 21px; " allowtransparency="true"></iframe>

当我单击不起作用的类似按钮时,我得到了该响应

for (;;);{"__ar":1,"payload":null,"jsmods":{"require":[["Plugin","disconnect",[],["http:\/\/edoardo.torreggiani.net\/home?post=5"]]]}}

工作和错误之间的唯一区别是 iframe src 中的HREF参数错误的在查询字符串中有一个参数。

4

1 回答 1

0

据我所知,每篇博文都没有真正的页面。你的帖子链接是这个:

http://edoardo.torreggiani.net/home?post=5

把它放在调试器中,你会看到错误:

https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fedoardo.torreggiani.net%2Fhome%3Fpost%3D5

'website' 类型的 URL 'http://edoardo.torreggiani.net' 上的对象无效,因为属性 'fb:admins' 的给定值 '10150406244527145' 无法解析为类型 'fbid'。

于 2012-10-31T14:01:34.730 回答