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 need to get all the messages posted by a user in a facebook fan page. (wall posts and also possible comments to other posts).

Is there an easy way to do that?

Right now i might have to get all the posts from a page, filter by user and do the same with comments but if the page has 3k posts and tons of comments that will be very slow.

I think this might be possible with fql but i cant find how to do it?

share|improve this question

1 Answer

this documentation from facebook will show you how to query the posts from the users wall - http://developers.facebook.com/docs/reference/fql/stream/

note: The stream table is limited to the last 30 days or 50 posts, whichever is greater.

that takes care of the huge amount of comments!

share|improve this answer

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.