无法更新 Google 驱动器文件
Can't update Google Drive file
我正在尝试使用 v3 Google 驱动器 SDK 将文件上传到 Google 驱动器:
$this->drive()
->files
->update(
$this->report->getId(),
$this->report, // This is a Google_Service_Drive_DriveFile instance
[
'uploadType' => 'multipart',
'data' => file_get_contents($this->getLocalReportLocation())
]
);
我收到以下异常:
Error calling PATCH https://www.googleapis.com/upload/drive/v3/files/ABCDe4FGHvXZTKVOSkVETjktNE0?uploadType=multipart: (403) The resource body includes fields which are not directly writable.
显然问题是由 $this->report
引起的,我通过以下方式获得:
// Fetch the latest synchronized report
$latestReport = $this->drive()
->files
->listFiles([
'orderBy' => 'modifiedTime',
'q' => '\''.$this->userEmail.'\' in owners AND name contains \'AppName\'',
])
->getFiles()[0];
$this->report = $this->drive()
->files
->get($latestReport->id);
可能 $this->report
,它是 \Google_Service_Drive_DriveFile
的一个实例,包含一些在设置并传递给 update()
方法时会导致问题的字段。
我能够通过将 \Google_Service_Drive_DriveFile
的新实例传递给 update()
方法来解决问题,如下所示:
$this->drive()
->files
->update($this->report->getId(), (new \Google_Service_Drive_DriveFile()), [
'uploadType' => 'multipart',
'data' => file_get_contents($this->getLocalReportLocation()),
'mimeType' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
]);
我正在尝试使用 v3 Google 驱动器 SDK 将文件上传到 Google 驱动器:
$this->drive()
->files
->update(
$this->report->getId(),
$this->report, // This is a Google_Service_Drive_DriveFile instance
[
'uploadType' => 'multipart',
'data' => file_get_contents($this->getLocalReportLocation())
]
);
我收到以下异常:
Error calling PATCH https://www.googleapis.com/upload/drive/v3/files/ABCDe4FGHvXZTKVOSkVETjktNE0?uploadType=multipart: (403) The resource body includes fields which are not directly writable.
显然问题是由 $this->report
引起的,我通过以下方式获得:
// Fetch the latest synchronized report
$latestReport = $this->drive()
->files
->listFiles([
'orderBy' => 'modifiedTime',
'q' => '\''.$this->userEmail.'\' in owners AND name contains \'AppName\'',
])
->getFiles()[0];
$this->report = $this->drive()
->files
->get($latestReport->id);
可能 $this->report
,它是 \Google_Service_Drive_DriveFile
的一个实例,包含一些在设置并传递给 update()
方法时会导致问题的字段。
我能够通过将 \Google_Service_Drive_DriveFile
的新实例传递给 update()
方法来解决问题,如下所示:
$this->drive()
->files
->update($this->report->getId(), (new \Google_Service_Drive_DriveFile()), [
'uploadType' => 'multipart',
'data' => file_get_contents($this->getLocalReportLocation()),
'mimeType' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
]);