Facebook access_token在2小时后过期

时间:2015-02-03 14:11:03

标签: php facebook-graph-api

PHP脚本成功从我的Facebook页面获取提要:

    $access_token = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';

    $url = 'https://graph.facebook.com/v2.2/711493158867950/feed?access_token='.$access_token;
    $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);

但是两小时后access_token过期,我收到以下错误:http://prntscr.com/60jyqt。 如何将以下php代码重写为"更新" access_token key?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

这对我有用(Facebook SDK v3.1):

1)创建一个“系统用户”

2)授予他访问所需属性的权限(在我的情况下为App)

3)为该应用和系统用户生成一个新令牌

我使用的说明here