private void googleTokenResponse() throws
GoogleTokenResponse tokenResponse = new
GoogleAuthorizationCodeTokenRequest(
new NetHttpTransport(),
JacksonFactory.getDefaultInstance(),
"https://www.googleapis.com/oauth2/v4/token",
clientId,
clientSecret,
authCode,
redicentUri).execute();
我从客户端获取authCodeiclientId,clientSecret。我可以使用“ tokenResponse.getAccessToken”获取访问令牌。但是我无法刷新令牌。该令牌将在3600秒后过期。我想在每3600秒结束后再次刷新令牌。