Hi,
I created a client to support client credentials (Service account) with signed jwt.
Tab credentials :
Client authenticator : Signed JWT
Signature algo : RS256
Tab Keys :
Use JWKS URL : off
Use JWKS : off
Certificate : MyCertificate (imported with Import Certificate button)
When I try to get an access token with my signed JWT, I have to specify a "kid" attribute so that Keycloak can locate the public key, here is my JWT header :
{
"alg": "RS256",
"typ": "JWT",
"kid": "?????"
}
Where can I find the value of the kid attribute in the keycloak conf ?
Regards