我正在使用javascript sdk創建我的第一個facebook應用程序。我可以使用(FB.api('me/feed','post',))發佈到用戶的牆上。如何使用javascript sdk獲取用戶的帖子
現在我需要的是,當用戶訪問我的應用程序時,它必須顯示(或列出)該用戶的帖子。代碼是
FB.api('/me/posts', function(response) {
for (var i=0, l=response.length; i<l; i++) {
var post = response[i];
alert('The value of post is:'+post);
if (post.message) {
alert('Message: ' + post.message);
} else if (post.attachment && post.attachment.name) {
alert('Attachment: ' + post.attachment.name);
}
} });
但它不工作。如果我刪除l = response.length並將條件更改爲i,則它將進入循環內部,但它會使post的值不確定。
我沒有得到它爲什麼返回undefined。它也爲post.message返回相同的值。
我也得到了用戶的access_token。
如果我想讓我的用戶發佈我需要使用的代碼。任何人都可以幫助我。
在此先感謝
非常感謝@ PossiblyAnEngineer – 2013-03-05 07:16:12