无法刷新令牌

时间:2014-10-09 12:34:38

标签: php google-drive-api

当我第一次从网络浏览器输入我的index.php时,我会被重定向到Google,以确认我的应用程序可以访问我的帐户。然后我希望应用程序保存刷新令牌,不要再问我了。但是当我尝试访问另一个浏览器index.php时,它又问我同样的事情。我想将index.php作为cronjob访问,因此每次都不得要求使用Google帐户。

这是我的代码:

$client = new Google_Client();
$client->setClientId($client_id);
$client->setClientSecret($client_secret);
$client->setRedirectUri($redirect_uri);
$client->addScope("https://www.googleapis.com/auth/drive");
$service = new Google_Service_Drive($client);

if (isset($_REQUEST['logout'])) {
    write_token("");
}

if (isset($_GET['code'])) {
    $client->authenticate($_GET['code']);
    write_token($client->getAccessToken());
    $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
    header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}

if (strlen(read_token()) > 1) {
    $client->setAccessToken(read_token());
    if ($client->isAccessTokenExpired()) {
        write_token("");
    }
} elseif(!isset($_GET['code'])) { // The IF NOT CODE prevent loop when refreshing token
    $authUrl = $client->createAuthUrl();
    header('Location: ' . $authUrl); // Update token if expired
}

谢谢!

/ Erik

1 个答案:

答案 0 :(得分:0)

在使用以下代码之前,已经授权应用程序的用户可以跳过提示。有关详细信息,请参阅this answer

要在cron作业中使用此功能,当没有用户登录浏览器时,您需要请求脱机访问并使用刷新令牌。有关详细信息,请参阅this answer