在没有Facebook应用/应用ID的情况下在网站上启用Facebook评论?

时间:2012-03-08 09:40:47

标签: facebook facebook-apps facebook-comments

从我可以阅读的Facebook开发文档这是我在我的网站上添加评论框的方式:

//In HTML Header
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'xxxxxxxxxxxxxxxx', // App ID
      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'; if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/sv_SE/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));
</script>

//Where I want my comments to show
<div class="fb-comments" data-href="<?=curPageURL()?>" data-num-posts="5" data-width="944"></div>

并且......如果我想在评论中添加管理员,我可以将其添加到我的元数据中:

<meta property="fb:admins" content="jamie.telin"/>
<meta property="fb:app_id" content="xxxxxxxxxxxxxxxxxx"/>

但我是否正确这是唯一的方法,或至少我必须创建一个Facebook应用程序才能使用Facebook评论? 如果我没有被误解,那就不需要了。

3 个答案:

答案 0 :(得分:2)

不,FB社交插件不需要应用程序ID - 它们被呈现为来自facebook.com的iframe,因此FB登录状态和cookie可供他们访问。

确保在FB.init()调用中设置status: falsecookie: false。不要提供任何appId参数。

答案 1 :(得分:1)

您可以在没有任何应用或应用ID的情况下添加它太容易了 最容易实现的评论框将是使用Facebook评论。您可以查看以下链接:https://developers.facebook.com/docs/reference/plugins/comments/

答案 2 :(得分:0)

是的,您需要一个App ID。要拥有应用程序ID,您必须创建一个Facebook应用程序。