redoc01
redoc01

Reputation: 2325

Retrieve Latest 5 Facebook Wall Posts using Javascript

How can i retrieve the latest 5 wall posts from Facebook using JavaScript?

Upvotes: 0

Views: 2014

Answers (1)

Mike Ruhlin
Mike Ruhlin

Reputation: 3556

Use FB.api

FB.api("/me/feed", {limit: 5}, function(data){
    // data is an array of feed posts...
});

Upvotes: 1

Related Questions