我正在尝试使用 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())
]
);
我收到以下例外:
调用PATCH https://www.googleapis.com/upload/drive/v3/files/ABCDe4FGHvXZTKVOSkVETjktNE0?uploadType=multipart时出错:(403)资源正文包含不可直接写入的字段。
答案 0 :(得分:2)
显然问题是由$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'
]);