Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the Facebook Graph API in C# and I'm trying to read all of a users wall updates. "feed" works well (with limit=5000 giving me everything). I am seeing all the users posts for this years, but only other people's posts prior to this. Does anyone know if there is a parameter I am missing, or is there a better api item to use?

I have the access token, and I am getting all my posts for this year. When I use the feed url in a browser, I see the same results; all my posts for this year, then only other people's before this.

share|improve this question

1 Answer

For querying the user's feed, you will want to use me/home and for the posts that the user has made to his own feed (or of items where friends have sent it "to" the user), use me/feed.

You can also do a bunch of filtering off of the FQL stream table. This query should give you only feed items posted by the user.

SELECT post_id, viewer_id, app_id, source_id,actor_id, message FROM stream WHERE source_id = me() and actor_id=me()

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 16:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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