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 am trying to develop a pretty simple Facebook app but I am having some difficulty with fetching all the posts from a specific group. I know theres a lot of open thread about it but it just doesn't work for me.

Heres the code i tried to post all of the posts:

$access_token = $facebook ->getAccessToken();

$posts = $facebook->api('https://graph.facebook.com/[group_id]/?fields=feed.fields(message)', 'GET', $access_token);

And then in the html part:

<ul>
    <?php
         $postis = $posts['data'];
         Foreach ($postis as $post) {
                $message = idx($post, 'message');
    ?>
    <li>
         <?php echo $message; ?>
    </li>
    <?php
         }
    ?>
</ul>

Maybe I am mixing tons of things up together, because I already tried many times.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.