Fixed method invocation due to change in signature of the used library

This commit is contained in:
luca.frosini 2023-09-14 15:00:57 +02:00
parent dedf11256a
commit 009083f335
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ public class ContextAuthorization {
}
private TokenResponse getJWTAccessToken(String context) throws Exception {
TokenResponse tr = KeycloakClientFactory.newInstance().queryUMAToken(CLIENT_ID, getClientSecret(context), context, null);
TokenResponse tr = KeycloakClientFactory.newInstance().queryUMAToken(context, CLIENT_ID, getClientSecret(context), context, null);
return tr;
}