Facebook评论,无法获得版主身份

时间:2011-12-20 09:50:09

标签: facebook facebook-comments

我有一个facebook iframe页面,其中包含以下(剪掉不相关的)代码。我似乎无法成为评论的主持人。知道我搞砸了吗? (调试链接:https://developers.facebook.com/tools/debug/og/object?q=brandpreview.nl%2Ffbkerst%2Fwhitewishingboard.php

<html xmlns:fb="http://ogp.me/ns/fb#">
<head>
    <meta property="fb:admins" content="737418775" />
    <meta property="fb:app_id" content="240672092656980"/>
</head>
<body>
    <script>
        window.fbAsyncInit = function() {

            FB.init({
              appId      : '240672092656980', // App ID
              status     : true, // check login status
              cookie     : true, // enable cookies to allow the server to access the session
              oauth      : true, // enable OAuth 2.0
              xfbml      : true  // parse XFBML
            });

            FB.Canvas.setSize({ width: 520, height: 2000 });

            // Additional initialization code here
        };

        // Load the SDK Asynchronously
        (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_GB/all.js#xfbml=1&appId=240672092656980";
          fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));       
    </script>       
    <div id="fb-root"></div>
    <div class="fb-comments" data-href="http://www.facebook.com/brandrepublic.nl" data-num-posts="5" data-width="520"></div>
</body>

1 个答案:

答案 0 :(得分:0)

首先,您不应将您的个人资料ID放在这些括号内。你应该提供它:

<meta property="fb:admins" content="737418775" />

其次,必须满足Facebook的要求;应该获得版主特权的facebook用户需要“喜欢”你的应用程序。

不用说,但请确保在查看评论插件时登录Facebook。