需要运行示例的Google Drive API客户端库代码

时间:2015-06-01 08:35:23

标签: android google-drive-api google-drive-android-api android-googleapiclient

我们需要用户Google驱动器的完全访问权限,但它提供的访问权限有限。我们无法找到Google API客户端库示例。附件链接提供样品的以下信息。

From the documentation

  

Google Drive Android API目前仅支持drive.file和drive.appfolder授权范围。如果您的应用需要Drive Android API中尚未提供的其他权限或功能,则必须使用Google API Java客户端。

我在哪里可以找到Google API Java客户端文档和示例?

2 个答案:

答案 0 :(得分:1)

您所指的GDAA API是基于REST API的API构建,仅支持FILE范围。

REST API支持允许访问所有文件夹/文件的DRIVE范围。

我可以为REST API here(以及GDAA API here的并行版本)提供一个非常简单的基本CRUD功能演示。

祝你好运。

答案 1 :(得分:0)

如果您的Android应用程序需要更多的drive.file和drive.appfolder范围,那么您需要使用API Client Library for Java而不是Google Play服务中提供的Google Drive Android API。

您还需要执行常见REST API任务的Google APIs Client Library for Java,包括身份验证和令牌管理。查看"该库在Android(@Beta)上运行"阅读器中的部分,以了解如何在android上检索Drive服务对象。