Hi, I am trying to setup OIDC Authentication. Open ID Connect Provider I am using sends id_token, access token, etc. All tokens are JWT. The issue I am facing is token_type field sent from Open ID Connect provider. The value of the field is 'jwt'. It seems that this caues issues with the authentication process since in logs on my deployment I get the following error:
Authentication to realm oidc1 failed - Failed to authenticate user with OpenID Connect (Caused by ElasticsearchSecurityException[Failed to exchange code for Id Token using the Token Endpoint. Unable to parse Token Response]; nested: ParseException[Token type must be Bearer]
Is there a way to configure my realm so that it accepts different values for token_type? Thanks