我尝试使用Google Play服务在Android上获取Google云端存储的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服务目前不支持此范围吗?
答案 0 :(得分: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。