从Facebook页面获取提要

时间:2015-02-02 08:49:17

标签: php facebook facebook-graph-api

前段时间我通过卷曲请求从我的Facebook页面获取了这样的信息:

    $url='https://www.facebook.com/feeds/page.phpformat=json&id=XXXXXXXXXXXXX';

    $curl = curl_init();

    $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
    $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
    $header[] = "Cache-Control: max-age=0";
    $header[] = "Connection: keep-alive";
    $header[] = "Keep-Alive: 300";
    $header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
    $header[] = "Accept-Language: en-us,en;q=0.5";
    $header[] = "Pragma: "; // browsers keep this blank.

    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla');
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    curl_setopt($curl, CURLOPT_REFERER, '');
    curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
    curl_setopt($curl, CURLOPT_AUTOREFERER, true);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl, CURLOPT_TIMEOUT, 10);

    $json = curl_exec($curl);

但是两天前,这个脚本返回了错误信息http://prntscr.com/602m20

可能是什么问题?

1 个答案:

答案 0 :(得分:2)

  

Pages JSON Feed(例如   https://www.facebook.com/feeds/page.php?id=%2019292868552&format=json)   现已弃用,将于2015年1月28日停止返回数据   向前。开发人员应该在图表上调用Feed边缘   API的Page对象:/v2.2/{page_id}/feed。

Source