2

現在、アプリケーションに Google ログインを追加しています。しかし、私はこのスコープから来たトークンを取得しましたがscope = "oauth2:" + Scopes.PLUS_LOGIN、サーバーはそのトークンでユーザーの電子メールを取得できません。そのため、スコープ「https://www.googleapis.com/auth/userinfo.email」を1つのスペースで追加しました。しかし、システムエラーしか発生しません。このような

06-19 15:26:33.444 25229-25460/ W/System.err﹕ com.google.android.gms.auth.UserRecoverableAuthException: NeedPermission 06-19 15:26:33.445 25229-25460/ W/System.err﹕ at com.google.android.gms.auth.GoogleAuthUtil.getToken(不明なソース) 06-19 15:26:33.447 25229-25460/ W/System.err﹕ at com.google.android.gms.auth.GoogleAuthUtil.getToken(出典不明)

どのような許可が必要なのか、まったくわかりません。これも私のコードです。

AsyncTask task = new AsyncTask() {
    @Override
    protected Object doInBackground(Object... params) {
        final String CLIENT_ID = "abc123.apps.googleusercontent.com";
        final List<String> SCOPES = Arrays.asList(new String[]{
            "https://www.googleapis.com/auth/plus.login",
            "https://www.googleapis.com/auth/userinfo.email"
        });
        try {
            String scopes = String.format("oauth2:server:client_id:%s:api_scope:%s", CLIENT_ID , TextUtils.join(" ", SCOPES));
            String token = GoogleAuthUtil.getToken(context, Plus.AccountApi.getAccountName(mGoogleApiClient), scopes);
            userInfo = new GoogleUserInfo(email, finalPersonPhotoUrl, currentPerson.getId(), token, currentPerson.getDisplayName());`enter code here`
        }
        catch (UserRecoverableAuthException e) {
            // This error is recoverable, so we could fix this
            // by displaying the intent to the user.
            e.printStackTrace();
        }
        catch (IOException e) {
            e.printStackTrace();
        }
        catch (GoogleAuthException e) {
            e.printStackTrace();
        }
        return null;
        }
    };
task.execute((Void) null);

メールでユーザー情報を取得できるトークンを取得するにはどうすればよいですか? ? ?

4

1 に答える 1