我在页面上添加了一个“赞”按钮,指向不同的网址。我还在目标页面添加了OG标签。
然而,iit无法正常工作。我在调试器中运行了两个页面,两者都显示错误。
带“赞”按钮的页面(http://www.ilovefish.co/test.html):
必须修复的错误:无法下载:无法从网址检索数据。
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。类型'网站'的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>
任何人都可以对此有所了解吗?
干杯
标记
答案 0 :(得分:0)
您是否可以访问互联网?我试过你给的链接。幸运的是,它似乎对我有用。你不需要做任何事情。或者可能是您的互联网连接速度很慢
答案 1 :(得分: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>
和
<div class="fb-like" data-href="http://www.ilovefish.co/target.html" data-send="true" data-width="450" data-show-faces="true"></div>