retrieve facebook page posts from everyone -


i want retrieve posts on facebook page, using graph api, can retrieve posted owner of page.

i use following

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

which gives me posts written owner.

on page http://www.facebook.com/nilecatacombs, if click nile + others, returning results need.

try fql:

php code:

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

it worked me.


Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -