Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stefanozanella/126942fac47a1deb025a21e28d9a38de to your computer and use it in GitHub Desktop.
Save stefanozanella/126942fac47a1deb025a21e28d9a38de to your computer and use it in GitHub Desktop.
@Bean
fun webClient(authorizedClientManager: OAuth2AuthorizedClientManager): WebClient =
WebClient
.builder()
.apply(
ServletOAuth2AuthorizedClientExchangeFilterFunction(
authorizedClientManager
).oauth2Configuration()
)
.build()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment