Google Drive SDK
我想用这个:
https://developers.google.com/drive/android/get-started
Android驱动器是Google Drive SDK。
我希望能够列出用户Google云端硬盘帐户中的所有文件。 但只有对应用程序创建(或用户选择)的文件和文件夹进行访问。
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Drive.API)
.addScope(Drive.SCOPE_FILE)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
Google开发者可以告诉我是否可以使用此SDK列出用户文件和文件夹,并检索元数据? 只允许SCOPE_FILE访问。
如果不是,未来会有更多的访问权限吗?
我已经尝试过(并且悲惨地失败)使用Java库,但我无法使其工作。 所以希望我能找到新的SDK将包含其他权限(Java库所做的)。
谢谢
我的解决方案是使用google-http-java-client库和google-api-client库,而不是谷歌驱动SDK for Android。 主要好处是您可以访问Google驱动器上的所有文件。 以下是代码中创建Drive对象的部分代码,然后您可以使用此对象来访问这些文件。
final GoogleCredential credential = new GoogleCredential.Builder()
.setTransport(httpTransport).setJsonFactory(jsonFactory)
.addRefreshListener(refreshListener)
.setClientSecrets(clientId, clientSecret).build()
.setRefreshToken(refreshToken).setAccessToken(accessToken);
// Create a new authorized API client
final Drive drive = new Drive.Builder(httpTransport, jsonFactory,
credential).build();
如您所见,目前只有SCOPE_FILE在Android上可用。 用户更喜欢你有这个范围,以便他们可以控制你的应用访问哪些文件。 您应该能够使用提供的用户界面来允许用户浏览所有文件并选择他们想要与您的应用程序一起使用的文件。 请参阅OpenFileActivity。
链接地址: http://www.djcxy.com/p/63055.html上一篇: Google Drive SDK
下一篇: Prevent Google OAuth 2.0 redirection for Google Drive API Integration