I'm trying to write a program that retreives a given user's "statuses" (and by statuses I mean the things he posted himself, anything he wrote as I'm mostly interested in textual statuses)

I cannot figure out the difference from the documentation here https://developers.facebook.com/docs/reference/api/user/ so I don't know which connection type to use; feed, posts or statuses

(Another thing I noticed is that statuses requires an access_token while the other 2 require the access_token only for non public stuff)

Thanks

link|improve this question

44% accept rate
feedback

2 Answers

This is documented on the User object of the Graph api.

The /posts api returns the posts created by the user (on her own wall or the wall of a friend), and it may include any kind of content such as shared links, checkins, photos and status updates.

The /feed includes all the things that a user might see on his own wall; again shared links, checkins, photos and status updates. This also includes posts made by friends on the user's wall.

The /statuses api returns only status updates posted by the user on his own wall.

The /home api returns a stream of all the posts created by you and your friends, i.e. what you usually find on the “News Feed” of Facebook. (You didn't ask for this one, but I include it for completeness.)

In all cases you only get public content unless you also obtain the read_stream permission.

link|improve this answer
The answer of whether /posts includes posts made on the freinds' wall is 'yes.' – shihpeng May 9 at 3:22
Thanks! I've updated the answer accordingly. – Juan Antonio May 9 at 9:30
feedback

Feed - https://graph.facebook.com/me/feed - gives you the user's feed - meaning the posts he sees when he is visiting facebook (friends important posts) - notice that facebook filters only things it's algorithm marks as significant to the user and not everything.

Status - what the user posts on his own wall

Posts - what the user posts - including on other people's walls

link|improve this answer
I got the sense that posts is what is posted on the user's wall, either by himself or others. Do you have any link/documentation to support what you're saying? – humanzz Jun 4 '11 at 10:39
developers.facebook.com/docs/reference/api/user - look at /posts - if you click it you will get your own /me/posts - if you look closesly you'll see that it contains both what you wrote on your own wall (status) and what you wrote on others – Rotem Tamir Jun 4 '11 at 13:04
The posts connection also seems to show posts made by others where you also have been tagged. – Jacob Jun 28 '11 at 17:14
The information contained in this answer seems to be wrong. See my answer. – Juan Antonio Nov 2 '11 at 15:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.