我在页面上添加了一个“喜欢”按钮,它指向不同的 URL。我还在目标页面中添加了 OG 标签。
但是,它无法正常工作。我已经通过调试器运行了两个页面,并且都显示错误。
带有“赞”按钮的页面(http://www.ilovefish.co/test.html):
必须修复的错误:无法下载:无法从 URL 检索数据。
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
</head>
<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<fb:like href="http://www.ilovefish.co/target.html" send="false" width="450" show_faces="true"></fb:like>
</body>
</html>
目标页面(http://www.ilovefish.co/target.html):
*必须修复的错误:对象无效值:URL 'http://www 处的对象。'website' 类型的 ilovefish.co/target.html' 无效,因为属性 'fb:app_id' 的给定值 '133031083521499' 无法解析为类型 'fbid'。*
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta property="og:title" content="Join The Fish Club" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.ilovefish.co/target.html" />
<meta property="og:image" content="http://www.ilovefish.co/images/fish_club.png" />
<meta property="og:site_name" content="The Fish Club" />
<meta property="fb:app_id" content="133031083521499" />
</head>
<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0">
</body>
</html>
任何人都可以对此有所了解吗?
干杯
标记