我正在使用Facebook的Like Button。 Facebook告诉我,如果我放置App ID元标记并在FB.init中调用它,我应该能够通过我的应用程序跟踪喜欢按钮的喜欢和见解。但是,“管理页面”没有显示在类似按钮上,似乎没有在我的应用程序中注册类似按钮。
我经历了短信,它正确地显示了我的所有信息。
我在其他地方看过类似的帖子,但没有人有答案。
我的代码:
<meta property="og:title" content="MY TITLE"/>
<meta property="og:type" content="article"/>
<meta property="og:url" content="MY URL"/>
<meta property="og:image" content="MY IMAGE"/>
<meta property="og:site_name" content="MY SITE NAME"/>
<meta property="fb:app_id" content="MY NUMERIC APP ID"/>
<meta property="og:description" content="MY DESCRIPTION"/>
<div><div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: 'MY NUMERIC APP ID',
status: true,
cookie: true,
xfbml: true,
channelUrl : 'MY CHANNEL URL'
});
};
(function() {
var e = document.createElement('script');
e.type = 'text/javascript';
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
<fb:like href="MY URL" send="true" width="400" show_faces="true" font="arial" action="like"></fb:like></div></div>
答案 0 :(得分:1)
跟踪您网域数据洞察的最佳方式是在www.facebook.com/insights上声明您的域名。当您登录该网址时,我们会将该网址与该网页上的管理标记相关联,并允许该应用管理员的任何人查看这些数据分析。
答案 1 :(得分:0)
要查看管理员链接,您需要先自己喜欢该页面。您还需要使用帐户登录到Facebook,该帐户是在fb:app_id标记中链接的应用程序的管理员。
答案 2 :(得分:0)
您缺少管理功能所需的某个元标记。在此行中添加管理员的用户ID。
<meta property="fb:admins" content="USER_ID"/>