0

我的目的是能够上传已经在 Google Drive 上可用的文件的新版本。

我从https://developers.google.com/drive/v2/reference/files/update#examples的 PHP 示例开始。

function updateFile($fileID, $uploadFile) {
    try {
        $file = $this->service->files->get($fileID);

        $content = file_get_contents($uploadFile);
        $file = $this->service->files->update($fileID, $file, array(
            'data' => $content,
        ));
        printf("Updated File ID: %s\n", $file->getId());
    } catch (Exception $e) {
        echo get_class($e), ': ', $e->getMessage(), PHP_EOL;
    }
}

结果我得到

Google_Service_Exception: {
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "fieldNotWritable",
    "message": "The resource body includes fields which are not directly writable."
   }
  ],
  "code": 403,
  "message": "The resource body includes fields which are not directly writable."
 }
}

我不明白有问题的不可写字段是什么。我唯一要更改的是文件的实际内容,而不是元数据。

有什么想法有什么问题吗?

4

1 回答 1

2

看看$file返回的对象$file = $this->service->files->get($fileID)。我的猜测是它包含一堆在https://developers.google.com/drive/v3/reference/files上未定义为可写的字段

因此,当您将相同的 $file 对象发送到 Drive in 时$file = $this->service->files->update($fileID, $file,,Drive 会反对他们的存在。由于您只是在更新内容,因此您可以发送一个空的元数据对象来代替 $file。

此外,正如 Siawa 所指出的,您所关注的快速入门被标记为 v2,但如果您使用的是最新的 PHP 库,则可能已更改为 v3。这是否会影响快速入门是任何人的猜测。

于 2017-05-08T17:55:49.613 回答