Can I use Spring RestDocs to document APIs when the authorization mode is bearer
?
A pointer to a simple example would be appreciated, it doesn't seem the be available on the Spring RestDocs pages.
Thanks
Can I use Spring RestDocs to document APIs when the authorization mode is bearer
?
A pointer to a simple example would be appreciated, it doesn't seem the be available on the Spring RestDocs pages.
Thanks
It's actually very simple.
First obtain a bearer-token and encode it so you can use it as a string.
Next add the header to your call, like:
.header("Authorization", "Bearer " + "your encoded token")