We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simplify setting a Bearer token when using WebClient. User's should be able to add the header like:
this.webClient .get() .headers(bearerToken(token)) // ...
The text was updated successfully, but these errors were encountered:
b3ca598
This has been removed in favor of Spring's new build in support as a part of #5612.
.headers(headers -> headers.setBearerAuth(token))
Sorry, something went wrong.
rwinch
No branches or pull requests
Summary
Simplify setting a Bearer token when using WebClient. User's should be able to add the header like:
The text was updated successfully, but these errors were encountered: