授权错误Google Drive Android

时间:2014-02-21 01:28:52

标签: android authorization google-drive-api

我正在尝试将Google云端硬盘导入我的Android项目。我从debug.keystore复制了一个SHA1密钥,我使用的是相同的软件包名称。对于活动,我使用了Google云端硬盘(https://github.com/googledrive/android-quickstart/blob/master/src/com/google/android/gms/drive/sample/quickstart/MainActivity.java

中的快速入门代码

我一直收到以下错误(myemail@gmail.com是应用程序名称的所有者=> Applicationi =>权限):

    W/GLSActivity(12741): [anc] Status from wire: INVALID_CLIENT_ID status: null

    I/GLSUser(12741): GLS error: INVALID_CLIENT_ID myemail@gmail.com oauth2:https://www.googleapis.com/auth/drive.file

    E/ClientConnectionOperation(21217): Handling authorization failure

    E/ClientConnectionOperation(21217): boq: Authorization failed: See https://developers.google.com/drive/android/auth for details on authorizing an application.

这是我的清单:

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" />

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

    <activity
        android:name="com.example.drivequickstart.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

有什么想法吗?

由于

4 个答案:

答案 0 :(得分:4)

需要设置同意屏幕(API&amp; Auth)

答案 1 :(得分:0)

我一开始并不知道同意屏幕的含义。它位于Google控制台上,是下面显示凭据的下一个选项。希望如果其他人都不知道这是哪个/什么,这会有所帮助。

答案 2 :(得分:0)

我有这个,我做了一切正确但仍然失败了。最后我创造了一个新的 Google Developers Console中的项目。在那里,我再次创造了一切。

答案 3 :(得分:0)

您设置的所有内容均已完成。现在,您只需在Google Console Developer上添加Consent屏幕即可。请转到https://developers.google.com/console/help/new/#userconsent完成此操作。