0

I have tried the sample app of Quarkus and JWT Security Sample App How can I implement JWT refresh token in Quarkus Framework?

Henry
  • 1
  • 1
  • 1

1 Answers1

0

You have to options here, which are basically the same, you have to invoke keycloak through the rest api in order to get your refresh token. You can do that by using a rest-client, like in here or an adapter, this are your options with the jwt integration.

If you instead use a different dependency like the oidc client you will be able to create new tokens and have more options, check this guide.

Thanks

Javier Toja
  • 1,630
  • 1
  • 14
  • 31