2012-10-28 53 views
0

我發佈活動給Facebook使用JavaScript SDK活動,但我得到的迴應是「不確定」發佈消息讀取使用JavaScript SDK

<script> 

setTimeout(function(){ 
    FB.api(
    '/me/news.reads' , 
    { article : document.location.href }, 
    function(response) { 
     alert(response.name); 
    }); 
},10000); 

</script> 

我應該在我的方法做正確的呢?

回答

-2

運行以下並檢查響應

<script> 

setTimeout(function(){ 
    FB.api(
    '/me/news.reads' , 
    { article : document.location.href }, 
    function(response) { 
     console.log(response); 
    }); 
},10000); 

</script> 
相關問題