即使我使用刷新令牌

时间:2017-09-21 06:46:57

标签: php google-sheets google-api google-drive-api google-api-php-client

我正在使用php库google-api-php-client-2.2.0

我正试图通过crontab执行php脚本,每小时自动更新一次谷歌驱动器电子表格的值

以下是我如何让我的客户端使用谷歌驱动器服务

function getClient() {
    $client = new Google_Client();
    $client->setApplicationName(APPLICATION_NAME);
    $client->setScopes(SCOPES);
    $client->setAuthConfig(CLIENT_SECRET_PATH);
    $client->setAccessType('offline');
    $client->setIncludeGrantedScopes(true);

    // Load previously authorized credentials from a file.
    $credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
    if (file_exists($credentialsPath)) {
        $accessToken = json_decode(file_get_contents($credentialsPath), true);
        $client->setAccessToken($accessToken);
        if ($client->isAccessTokenExpired()) {
            $client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
            file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
            $accessToken = json_decode(file_get_contents($credentialsPath), true);
            $client->setAccessToken($accessToken);
        }
    }

    return $client;
}

及以下是搜索正确的google驱动器文件并在找到后立即更新的代码

define('APPLICATION_NAME', 'Drive API PHP Quickstart');
define('CREDENTIALS_PATH', __DIR__ . '/drive-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
define('SCOPES', implode(' ', array(Google_Service_Drive::DRIVE)));

$client = getClient();
$service = new Google_Service_Drive($client);

$optParams = array(
    'pageSize' => 10,
    'fields' => 'nextPageToken, files(id, name)'
);
$results = $service->files->listFiles($optParams);

$data = get_results_as_string($all); // this is data to be updated with

if (count($results->getFiles()) == 0) {
    print "No files found.\n";
}else{
    foreach ($results->getFiles() as $file) {
        if ($file->getName() == $GOOGLE_SPREADSHEET_NAME){
            $fileId = $file->getId();
            $emptyFile = new Google_Service_Drive_DriveFile();
            $service->files->update($fileId, $emptyFile, array(
                'data' => $data,
                'mimeType' => 'text/csv',
                'uploadType' => 'media',
                'fields' => 'id')
            );
        }
    }
}

我希望当我从CLIENT_SECRET_PATH文件中获取的访问令牌到期时 - 我将获取(因为我有适当的检查)来自刷新令牌的新访问令牌,我在同一个文件中。 我用已经取出的内容覆盖文件,并进一步了解更新和例程。

然而,这可以工作大约12个小时(我每小时运行一次),然后停止工作。 如果你能提供帮助,请欣赏

1 个答案:

答案 0 :(得分:1)

我想出来了,下面的行是通过文件查找:

$optParams = array(
    'pageSize' => 10,
    'fields' => 'nextPageToken, files(id, name)'
);

默认 pageSize 值为10的方式太少了。经过一段时间后,您需要在前10个结果中找回未获得的文档ID。变量可在范围[1; 1000]范围内配置 我放了1000,它已经为我解决了这个问题。