Google文档(电子表格)获得修订版ID

时间:2013-08-19 18:56:05

标签: google-sheets google-docs google-drive-api google-docs-api

我正在测试此页面:

https://developers.google.com/drive/v2/reference/revisions/get#try-it

我找不到修订版ID,当我尝试输入类似我认为是修订版ID的内容时,会显示错误:“message”:“修订版未找到:”

如何找到文件的修订版ID(我正在尝试使用电子表格)?

稍后我会尝试使用(在java中):

RevisionList revisions = service.revisions().list(fileId).execute();
return revisions.getItems();

但是现在我需要手动完成。

1 个答案:

答案 0 :(得分:1)

工作正常。您需要一些正确的文件ID和修订版ID。

例如 -

文件ID = 0Vs336aBx5r3MdHJz1TZaCi1kb0JsOExoSHJDMWFZVUE
修订版ID = 13723331213000

步骤 -

  1. 从此处获取有效的文件ID。试一试 - maxResults = 5 https://developers.google.com/drive/v2/reference/files/list
    从json回复中选择任何文件ID。

  2. 获取此文件的所有修订版本 - https://developers.google.com/drive/v2/reference/revisions/list
    试一试 - fieldId =输入从上一步复制的文件ID。
    从json回复中选择任何修订ID

  3. 现在使用文件ID和修订版ID - https://developers.google.com/drive/v2/reference/revisions/get#try-it