Reputation: 2325
How can i retrieve the latest 5 wall posts from Facebook using JavaScript?
Upvotes: 0
Views: 2014
Reputation: 3556
Use FB.api
FB.api("/me/feed", {limit: 5}, function(data){
// data is an array of feed posts...
});
Upvotes: 1