我已经花了几个晚上来让审核工具在不同页面上的评论框中工作。在这个网站和网上我找不到解决我问题的答案。
如果我将我网站的链接放在调试工具中,我会得到以下信息:
必须修复的错误对象无效值:“网站”类型的 URL“http://www.mysite.be/Page.php”处的对象>无效,因为给定值“{e-mail@msn.com}”无法将属性“fb:admins”解析为“fbid”类型。
所以我检查了我的用户名是否正确。它是,但在我的代码中,在头部,它是一个数字:
<meta property="fb:admins" content="5897144XX"/>
<meta property="fb:app_id" content="3226088511525XX"/>
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.mysite.be/page.php" />
<meta property="og:title" content="Title" />
<meta property="og:description" content="Discription" />
<meta property="og:image" content="http://www.mysite.be/page.png"/>
<meta property="og:image:width" content="150" />
<meta property="og:image:height" content="150" />
在我头顶上方:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" xml:lang="en" lang="en" dir="ltr">
在身体里:
<div class="fb-comments" data-href="http://www.mysite.be/page.php" data-num-posts="5" data-width="470"></div>
<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/nl_NL/all.js#xfbml=1&appId=3226088511525xx"; fjs.parentNode.insertBefore(js, fjs);}(document, 'script', 'facebook-jssdk'));
</script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '3226088511525xx', // App ID
channelUrl : '//www.mysite.be/channel.php', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
评论框工作正常,人们可以对一篇文章做出反应,它会显示在 Facebook 上。但是我在审核工具中看不到的反应。
有人可以告诉我我做错了什么吗?