2011-09-16 48 views
0

请问我在Facebook的评论模块, 一个电脑提供给另一台电脑或从Facebook帐户提供的意见与另一个帐户有所不同Facebook 其中一些出现的评论和一些不存在的评论,并在另一个帐户中显示其他评论。评论在所有计算机上都不可见(Facebook的评论)

 <script src="http://connect.facebook.net/ar_AR/all.js#appId=myappid&amp;xfbml=1"></script> 

    <fb:comments width="550" notify="true" migrated="1"></fb:comments> 
    <br /> 
    <%-- <p><fb:login-button autologoutlink="true"></fb:login-button></p>--%> 
     <p><fb:like></fb:like></p> 
    <div id="fb-root"> 
    </div> 

    <script type="text/javascript"> 
     window.fbAsyncInit = function() { 
      FB.init({ appId: 'myappid', status: true, cookie: true, 
       xfbml: true 
      }); 

//   FB.Event.subscribe('comments.create', function (response) { 
//    // do something with response.session 
//    alert("add comment"); 
//   }); 
      FB.Event.subscribe('comment.create', function (response) { 
       //alert(response.commentID); 
      }); 

      FB.Event.subscribe('comment.remove', function (response) { 
       // do something with response.session 
       alert("thank you for remove comment"); 
      }); 

     }; 

     (function() { 
      var e = document.createElement('script'); 
      e.type = 'text/javascript'; 
      e.src = document.location.protocol + 
      '//connect.facebook.net/ar_Ar/all.js'; 
      e.async = true; 
      document.getElementById('fb-root').appendChild(e); 


     }()); 
    </script> 

回答

0

是的,这是评论框的一个功能。基本上,Facebook展示了它认为对你来说最有趣的东西。它通过海报活动,您自己的个人资料以及您的“朋友”的内容对内部进行评估。

https://developers.facebook.com/docs/reference/plugins/comments/

社会关联:评论栏中使用的社会信号,表面为每个用户最高质量的意见。评论被命令向用户显示来自朋友,朋友的朋友以及最喜欢或活跃的讨论主题的最相关评论,而标记为垃圾邮件的评论是隐藏的。

相关问题