quarkus_logo_horizontal_rgb_1280px_reverse
Visit the Swagger UI Visit the Dev UI

Authentication

Backend

Make sure the following env props are set in this application:

  • QUARKUS_OIDC_AUTH_SERVER_URL=xxx
  • QUARKUS_OIDC_CLIENT_ID=xxx
  • QUARKUS_OIDC_CREDENTIALS_SECRET=xxx
  • QUARKUS_OIDC_TOKEN_AUDIENCE=xxx

Frontend

To authenticate against this API you need to set the config corresponding to the properties above. Then, add a Authorization: Bearer {JWT access token} to the requests.

Make sure you include the same token audience in your config as in this backend app is used so that a JWT access token (not an opaque access token) is created that the backend can decode.