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.

HI any one can help me to fetch the post the facebook page and display it in my web page

This is the url. https://www.facebook.com/yakimonos

I have worked with facebook login and sent invitations to friends. So i have some basic knowledge in working with the facebook sdk.

But i don't know how to proceed with this task.

So please help me.

thanks to all.

share|improve this question
What exactly do you want to retrieve? The posts made by that page? – Lix Aug 26 '12 at 11:05

1 Answer

up vote 0 down vote accepted

You can use FQL to fetch posts of page. You will require read_stream permission.

SELECT message FROM stream WHERE  source_id = 'page_id' and actor_id = 'page_id'

For your page-

$fql = "SELECT message FROM stream WHERE  source_id = '183144838398839' and actor_id = '183144838398839'";
$posts = $facebook->api(array(
    'method' => 'fql.query',
    'query' => $fql,
));

print_r($posts );
share|improve this answer
thanks for reply i'l do it what you said and get back to you – Soundhar Raj Aug 26 '12 at 14:47

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.