By Using Facebook Graph API, How to read Facebook wall?

5.3k Views Asked by At

I am using the facebook API in my app, i know how to post message on wall. my requirement is, i want read the wall information of user recent status information through code . How can i achieve this...

for example. from my facebook account i want to get the latest status information.

3

There are 3 best solutions below

8
On BEST ANSWER

Here's a great example of using the GraphAPI to do that

https://graph.facebook.com/me/feed?access_token={}

Try it out here: https://developers.facebook.com/tools/explorer

EDIT

I stumbled across this the other day. There's a connection from the user object called statuses, which filters the stream even more than feed. As with many graph calls, you can add ?limit=N to limit the result set. So this new way I discovered would look like:

https://graph.facebook.com/me/statuses?limit=1&access_token={}

6
On

You should use a third party API such as Easy Facebook SDK. It allows you to do what you are trying to do with ease.

0
On

U should check it out here:

http://developers.facebook.com/blog/post/385/