Class RefreshTokenOAuth2AuthorizedClientProvider
java.lang.Object
org.springframework.security.oauth2.client.RefreshTokenOAuth2AuthorizedClientProvider
- All Implemented Interfaces:
- OAuth2AuthorizedClientProvider
public final class RefreshTokenOAuth2AuthorizedClientProvider
extends Object
implements OAuth2AuthorizedClientProvider
An implementation of an 
OAuth2AuthorizedClientProvider for the
 refresh_token grant.- Since:
- 5.2
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionauthorize(OAuth2AuthorizationContext context) Attempt to re-authorize theclientin the providedcontext.voidsetAccessTokenResponseClient(OAuth2AccessTokenResponseClient<OAuth2RefreshTokenGrantRequest> accessTokenResponseClient) Sets the client used when requesting an access token credential at the Token Endpoint for therefresh_tokengrant.voidSets theClockused inInstant.now(Clock)when checking the access token expiry.voidsetClockSkew(Duration clockSkew) Sets the maximum acceptable clock skew, which is used when checking theaccess tokenexpiry.
- 
Constructor Details- 
RefreshTokenOAuth2AuthorizedClientProviderpublic RefreshTokenOAuth2AuthorizedClientProvider()
 
- 
- 
Method Details- 
authorizeAttempt to re-authorize theclientin the providedcontext. Returnsnullif re-authorization is not supported, e.g. the client is not authorized OR therefresh tokenis not available for the authorized client OR theaccess tokenis not expired.The following context attributesare supported:- OAuth2AuthorizationContext.REQUEST_SCOPE_ATTRIBUTE_NAME(optional) - a- String[]of scope(s) to be requested by the- client
 - Specified by:
- authorizein interface- OAuth2AuthorizedClientProvider
- Parameters:
- context- the context that holds authorization-specific state for the client
- Returns:
- the OAuth2AuthorizedClientornullif re-authorization is not supported
 
- 
setAccessTokenResponseClientpublic void setAccessTokenResponseClient(OAuth2AccessTokenResponseClient<OAuth2RefreshTokenGrantRequest> accessTokenResponseClient) Sets the client used when requesting an access token credential at the Token Endpoint for therefresh_tokengrant.- Parameters:
- accessTokenResponseClient- the client used when requesting an access token credential at the Token Endpoint for the- refresh_tokengrant
 
- 
setClockSkewSets the maximum acceptable clock skew, which is used when checking theaccess tokenexpiry. The default is 60 seconds.An access token is considered expired if OAuth2AccessToken#getExpiresAt() - clockSkewis before the current timeclock#instant().- Parameters:
- clockSkew- the maximum acceptable clock skew
 
- 
setClockSets theClockused inInstant.now(Clock)when checking the access token expiry.- Parameters:
- clock- the clock
 
 
-