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?
$wall->data? – Sean Walsh Apr 25 '11 at 20:53