我正在通过API将csv文件导入Google电子表格, 我有一个DocumentListEntry对象:
DocumentList docs = new DocumentList("test");
docs.login(adminEmail, adminPassword);
DocumentListEntry newDocs=docs.uploadFile(uploadfilepath, filename);
我可以在newDocs.getDocId()中检索它的id,但是如何在浏览器中找到用作链接的URL来打开文档?
答案 0 :(得分:0)
您可以使用Drive SDK API“files / get”通过fileid获取网址。 API文档在这里:
https://developers.google.com/drive/v2/reference/files/get
从结果json文件中,有一个“alternateLink”,它就是您想要的。