如何在Android中获取google plus的刷新令牌?

时间:2015-05-05 06:20:58

标签: android google-plus

我使用以下代码获取google plus的访问令牌。有没有办法获取刷新令牌,以便我可以从Web服务器脱机访问谷歌API。

String accountName = params[0];
String scopes = "oauth2:profile email";
String token = null;
try {
    token = GoogleAuthUtil.getToken(getApplicationContext(), accountName, scopes);
} catch (IOException e) {
    Log.e(TAG, e.getMessage());
} catch (UserRecoverableAuthException e) {
    startActivityForResult(e.getIntent(), REQ_SIGN_IN_REQUIRED);
} catch (GoogleAuthException e) {
    Log.e(TAG, e.getMessage());
}

1 个答案:

答案 0 :(得分:-3)

这个link非常清楚地解释了为获得服务器端轮询而获取令牌和referesh令牌所需的api。

您会收到类似的回复。

{
  "access_token" : "ya29.AHES6ZSuY8f6WFLswSv0HELP2J4cCvFSj-8GiZM0Pr6cgXU",
  "token_type" : "Bearer",
  "expires_in" : 3600,
  "refresh_token" : "1/551G1yXUqgkDGnkfFk6ZbjMLMDIMxo3JFc8lY8CAR-Q"
}

在跨平台场景中使用令牌时,您最好阅读此guide