2011-09-16 50 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/

社會關聯:評論欄中使用的社會信號,表面爲每個用戶最高質量的意見。評論被命令向用戶顯示來自朋友,朋友的朋友以及最喜歡或活躍的討論主題的最相關評論,而標記爲垃圾郵件的評論是隱藏的。

相關問題