Federico
Results
2
comments of
Federico
To answer your question, my use case is the following: I have a cloud microservice protected via Keycloak Auth which I need to call from the service I'm currently developing...
I managed to get the token with these lines: ```java String currentUserName = authenticationComponent.getCurrentUserName(); String currentTicket = ticketComponent.getCurrentTicket(currentUserName, true); RefreshableAccessTokenHolder token = keycloakTicketTokenCache.get(currentTicket); ``` The boolean parameter for the `getCurrentTicket`...