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'm trying to pull the content from the following Facebook page: https://graph.facebook.com/100000123344690/feed

I'm already pulling the data successfully using the following:

        $ch = curl_init('https://graph.facebook.com/100000123344690/feed');
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        $response = curl_exec($ch);
        $wall = json_decode($response);

        var_dump($wall->data);

Now, i'm confused on how I loop over the $wall object and output the message param. Can someone show me a simple loop outputting the message param?

share|improve this question
What's the structure of $wall->data? – Sean Walsh Apr 25 '11 at 20:53

2 Answers

up vote 0 down vote accepted

This works:

foreach($wall->data as $post){
    echo $post->message;
}
share|improve this answer

what you're pulling from facebook is json formatted data. you have to convert it to an array in order to loop through it. You have to pass true to json_decode to decode it to a multidmensional array, try:

$wall = json_decode($response, true); print_r($wall);

share|improve this answer

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.