如何在java中获得Google Drive REST api alternateLink?

时间:2016-07-29 13:42:15

标签: android google-drive-api

File file = mService.files().create(fileMetadata, content)
                    .setFields("id, webContentLink ,webViewLink, alternateLink").execute();

 Log.d(TAG, "File ID: " + file.getId());
 Log.d(TAG, "File web content link: " + file.getWebContentLink());     
 Log.d(TAG, "File web view link: " + file.getWebViewLink());
 Log.d(TAG, "File alternate link: " + file.????????);

我创建一个文件,然后想要获得alternateLink但是没有这样的方法来获取它?为什么?我做错了吗?

1 个答案:

答案 0 :(得分:0)

The Drive API可让您下载存储在Google云端硬盘中的文件。此外,您还可以下载应用程序可以处理的格式的Google文档(文档,电子表格,演示文稿等)的导出版本。 Drive还支持通过webViewLink属性中的URL为用户提供对文件的直接访问。

文件的元数据:

strip