My quarkus backend is calling a rest web service which requires an access token. The access token is generated using client id, client secret and grant type client credentials. The token is valid for a couple of days. This quarkus backend then propagates the data to an angular frontend. I have a couple of questions:
- Is there an out of the box implementation from Quarkus framework?
- If not, please guide me if I should use httpclient or any other library for getting the access token.
- How to check for refresh token?
- How to save the access token, so that it can be used for other requests by other users? Otherwise I end up generating an access token every time a user calls the rest service.