将文件上传到Google云端硬盘

时间:2014-07-18 12:49:43

标签: android google-drive-android-api

我正在开发一款使用Google云端硬盘来共享文件的应用。 Google云端硬盘的活动由以下代码启动。

int REQUEST_ACCOUNT_PICKER = 1;
credential = GoogleAccountCredential.usingOAuth2(mActivity,DriveScopes.DRIVE);
startActivityForResult(credential.newChooseAccountIntent(),REQUEST_ACCOUNT_PICKER);

该应用在清单文件中具有以下权限:

<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />

并在Google控制台上配置。

但是,我总是收到请求代码131073 onActivityResult。

你能告诉我我做错了什么吗?

0 个答案:

没有答案