我正在尝试使用带有Drive API V3的PHP客户端v2.0从Google云端硬盘下载文件。
是否可以在单个 HTTP 请求中检索文件的正文和元数据?
为->files->get()
退货提供'alt=media'
GuzzleHttpPsr7Response
我可以运行->getBody()->__toString()
.
如果我不提供'alt=media'
,则返回具有所有元数据但没有正文的Google_Service_Drive_DriveFile
。
问题。
是否可以在同一请求中同时获取元数据和正文?
尝试这样的事情:
<?php
先看这个: https://developers.google.com/api-client-library/php/auth/web-app
require_once __DIR__ . '/vendor/autoload.php';
更改时区 date_default_timezone_set("太平洋/奥克兰");
$client = new Google_Client();
$client->setAuthConfig('client_secrets.json');
$client->setAccessType('offline');
$client->setApprovalPrompt('force');
$client->setIncludeGrantedScopes(true);
将范围更改为您需要的范围
$client->addScope(Google_Service_Drive::DRIVE_FILE, Google_Service_Drive::DRIVE_APPDATA, Google_Service_Drive::DRIVE, Google_Service_Drive::DRIVE_METADATA);
$accessToken = json_decode(file_get_contents('credentials.json'), true);
$client->setAccessToken($accessToken);
如果令牌已过期,请刷新令牌。谷歌在一小时后过期,所以有必要
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents('credentials.json', json_encode($client->getAccessToken()));
}
$service = new Google_Service_Drive($client);
$results = $service->files->listFiles($optParams);
$fileId = 'yourfileid;
$file = $service->files->get($fileId, array('alt' => 'media'));
file_put_contents("hello.pdf",$file->getBody());
?>