FB Comments Plugin - 在页面上检测评论

时间:2011-10-14 21:33:07

标签: javascript facebook facebook-javascript-sdk facebook-comments

如何使用Comments Plugin检测我的页面上的评论何时?我目前正在使用Facebook PHP SDK,阅读它说我需要JS SDK的Facebook文档,但是如何完成我想要做的事情并不是很清楚。

1 个答案:

答案 0 :(得分:3)

我想这很直接:

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'YOUR_APP_ID', // App ID
      channelURL : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
      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.Event.subscribe('comment.create',
        function(response) {
            alert('A new comment has been added!');
        }
    );

  };

  // 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/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));
</script>

文件:1 - 2