如何从ID中通过Google电子表格的API获取浏览器网址?

时间:2013-02-15 18:05:27

标签: google-sheets google-drive-api

我正在通过API将csv文件导入Google电子表格, 我有一个DocumentListEntry对象:

DocumentList docs = new DocumentList("test");

docs.login(adminEmail, adminPassword);
DocumentListEntry newDocs=docs.uploadFile(uploadfilepath, filename);

我可以在newDocs.getDocId()中检索它的id,但是如何在浏览器中找到用作链接的URL来打开文档?

1 个答案:

答案 0 :(得分:0)

您可以使用Drive SDK API“files / get”通过fileid获取网址。 API文档在这里:

https://developers.google.com/drive/v2/reference/files/get

从结果json文件中,有一个“alternateLink”,它就是您想要的。