2

我正在尝试使用 Google Play 服务在 Android 上为 Google Cloud Storage 获取 Oauth2 令牌。我正在使用以下代码

try {
        gsToken=GoogleAuthUtil.getToken(this, email,
            "https://www.googleapis.com/auth/devstorage.read_only");
    } catch (IOException e) {
        e.printStackTrace();
    } catch (UserRecoverableAuthException userAuthEx) {
            startActivityForResult(userAuthEx.getIntent(),1);;
    } catch (GoogleAuthException e) {

    }

这会引发 GoogleAuthException。Google PLAY 服务目前不支持此范围吗?

4

1 回答 1

2

在向 GoogleAuthUtil 询问 OAuth2 令牌时,您需要在范围前加上字符串“oauth2:”。如果您想要多个范围,可以使用空格分隔符列出它们。

因此,在您的情况下,范围字符串将是“oauth2:https://www.googleapis.com/auth/devstorage.read_only”。

有关更多详细信息,请参阅http://android-developers.blogspot.com/2012/09/google-play-services-and-oauth-identity.html

于 2012-12-04T05:10:09.727 回答