retrieve facebook page posts from everyone

708 Views Asked by At

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.

1

There are 1 best solutions below

1
On BEST ANSWER

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.