Facebook API версии 15.
Сейчас версия 15 больше не доступна, поэтому я обновил мое приложение Facebook (портал для разработчиков) до версии 21.
Это мой код:
Код: Выделить всё
// GET FEED
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_POST, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_URL, 'https://graph.facebook.com/v21.0/me/feed?'.http_build_query(
array(
"limit" => "3",
"fields" => "attachments,created_time",
"access_token" => "XXX"
)));
$response = json_decode(curl_exec($ch),true);
curl_close($ch);
echo '
';
print_r($response);
Код: Выделить всё
Array
(
[data] => Array
(
)
)
Подробнее здесь: https://stackoverflow.com/questions/791 ... ebook-page