This commit is contained in:
Bastian Wagner
2026-07-15 16:33:21 +02:00
parent 9cd8891769
commit 426c18ad57
2 changed files with 2 additions and 0 deletions

View File

@@ -103,6 +103,7 @@ export class OidcClientService {
grant_types: client.grantTypes, grant_types: client.grantTypes,
response_types: client.responseTypes, response_types: client.responseTypes,
scope: client.scope, scope: client.scope,
id_token_signed_response_alg: 'ES256',
token_endpoint_auth_method: client.tokenEndpointAuthMethod, token_endpoint_auth_method: client.tokenEndpointAuthMethod,
}; };

View File

@@ -145,6 +145,7 @@ export class OidcProviderService implements OnModuleInit {
clientDefaults: { clientDefaults: {
grant_types: ['authorization_code'], grant_types: ['authorization_code'],
response_types: ['code'], response_types: ['code'],
id_token_signed_response_alg: 'ES256',
token_endpoint_auth_method: 'client_secret_basic', token_endpoint_auth_method: 'client_secret_basic',
}, },
claims: { claims: {