Fixed method invocation due to change in signature of the used library
This commit is contained in:
parent
dedf11256a
commit
009083f335
|
@ -78,7 +78,7 @@ public class ContextAuthorization {
|
||||||
}
|
}
|
||||||
|
|
||||||
private TokenResponse getJWTAccessToken(String context) throws Exception {
|
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;
|
return tr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue