0

コメントプラグインを使用して、自分のページにコメントが作成されたことを検出するにはどうすればよいですか?私は現在FacebookPHPSDKを使用しており、JS SDKが必要であると書かれているFacebookのドキュメントを読んでいますが、私がやりたいことをどのように達成するかははっきりしていません。

4

1 に答える 1

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 _

于 2011-10-14T21:44:25.377 に答える