I'm accessing a client's FB page to fill a feed on his website. I am accessing it with PHP and Curl that way:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/pageName/feed?access_token=tokenValue");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101206 Ubuntu/10.10 (maverick) Firefox/3.6.13'); // set the user agent here
$data = curl_exec($ch);
2 questions here:
whether I use the feed, the posts or the statuses parameters I get a lot of information. Is there not a way to access only the posts IDs, titles and their short description...?
How to sort out and use the returned array? I get an ugly array that's suppose to be an stdClass, but I can't access it simply... it's not json, not xml, ... what is it?? maybe someone knows a good library to handle this...?