Class ServletOAuth2AuthorizedClientExchangeFilterFunction

    • Constructor Detail

      • ServletOAuth2AuthorizedClientExchangeFilterFunction

        public ServletOAuth2AuthorizedClientExchangeFilterFunction()
      • ServletOAuth2AuthorizedClientExchangeFilterFunction

        public ServletOAuth2AuthorizedClientExchangeFilterFunction​(OAuth2AuthorizedClientManager authorizedClientManager)
        Constructs a ServletOAuth2AuthorizedClientExchangeFilterFunction using the provided parameters.

        When this constructor is used, authentication (HTTP 401) and authorization (HTTP 403) failures returned from an OAuth 2.0 Resource Server will NOT be forwarded to an OAuth2AuthorizationFailureHandler. Therefore, future requests to the Resource Server will most likely use the same (likely invalid) token, resulting in the same errors returned from the Resource Server. It is recommended to configure a RemoveAuthorizedClientOAuth2AuthorizationFailureHandler via setAuthorizationFailureHandler(OAuth2AuthorizationFailureHandler) so that authentication and authorization failures returned from a Resource Server will result in removing the authorized client, so that a new token is retrieved for future requests.

        Parameters:
        authorizedClientManager - the OAuth2AuthorizedClientManager which manages the authorized client(s)
        Since:
        5.2
      • ServletOAuth2AuthorizedClientExchangeFilterFunction

        public ServletOAuth2AuthorizedClientExchangeFilterFunction​(ClientRegistrationRepository clientRegistrationRepository,
                                                                   OAuth2AuthorizedClientRepository authorizedClientRepository)
        Constructs a ServletOAuth2AuthorizedClientExchangeFilterFunction using the provided parameters.

        Since 5.3, when this constructor is used, authentication (HTTP 401) and authorization (HTTP 403) failures returned from an OAuth 2.0 Resource Server will be forwarded to a RemoveAuthorizedClientOAuth2AuthorizationFailureHandler, which will potentially remove the OAuth2AuthorizedClient from the given OAuth2AuthorizedClientRepository, depending on the OAuth 2.0 error code returned. Authentication failures returned from an OAuth 2.0 Resource Server typically indicate that the token is invalid, and should not be used in future requests. Removing the authorized client from the repository will ensure that the existing token will not be sent for future requests to the Resource Server, and a new token is retrieved from the Authorization Server and used for future requests to the Resource Server.

        Parameters:
        clientRegistrationRepository - the repository of client registrations
        authorizedClientRepository - the repository of authorized clients