0

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

DocumentList docs = new DocumentList("test");

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

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

4

1 回答 1

0

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

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

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

于 2014-01-15T01:40:44.553 回答