Google OAuth:如何使用刷新令牌?
我可以从Android设备将我的一次性使用令牌交换为访问令牌和刷新令牌。我正在尝试了解如何使用刷新标记。
我发现this可以处理HTTPS请求,但我想知道Java SDK中是否有一些地方可以处理刷新?
解决方案
您不需要这样做。只需在每次HTTP会话之前调用GoogleAuthUtil.getToken(),GoogleAuthUtil将确保您获得一个有效的HTTP会话,并在必要时刷新。
编辑:哦,好的,他在服务器上做这个。以下是一些使用刷新标记的Java代码:
String data = "refresh_token=" + mRefreshToken +
"&client_id=" + Constants.WEB_CLIENT_ID +
"&client_secret=" + Constants.WEB_CLIENT_SECRET +
"&grant_type=refresh_token";
byte[] body = data.getBytes();
URL url = new URL(Constants.GOOGLE_TOKEN_ENDPOINT);
conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setFixedLengthStreamingMode(body.length);
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
conn.getOutputStream().write(body);
body = XAuth.readStream(conn.getInputStream());
JSONObject json = new JSONObject(new String(body));
String accessToken = json.optString("access_token");
if (accessToken == null) {
throw new Exception("Refresh token yielded no access token");
}
相关文章