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 want to retrieve all posts on a facebook page, but using the graph api, all i can retrieve are those which posted by the owner of the page.

i use the following

http://graph.facebook.com/nilecatacombs/posts

which gives me the posts written by owner.

on the page http://www.facebook.com/nilecatacombs, if you click Nile + others, the returning results are what i need.

share|improve this question
possible duplicate of Can not read all posts on my facebook wall – ifaour Feb 12 '11 at 11:58

1 Answer

up vote 1 down vote accepted

Try with this fql:

PHP code:

$sql = 'SELECT post_id, actor_id, message, created_time, attachment, comments, likes, permalink FROM stream WHERE source_id = ' . $page_id . ' limit 50';

it worked for me.

share|improve this answer
Matej, you are awesome. It is absolutely working, and you got me out from a very desperate situation.Thank you so much. – Batu Feb 11 '11 at 14:12
np glad to help ;) – MatejB Feb 11 '11 at 14:16

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.