diff --git a/app/server/web/oidc-connector.ts b/app/server/web/oidc-connector.ts index bee4c57..2f49d07 100644 --- a/app/server/web/oidc-connector.ts +++ b/app/server/web/oidc-connector.ts @@ -254,7 +254,7 @@ function negotiateTokenEndpointAuthMethod( log.warn( 'config', - 'Falling back to client_secret_basic for token endpoint authentication', + 'Falling back to client_secret_post for token endpoint authentication', ); - return oidc.ClientSecretBasic(config.client_secret); + return oidc.ClientSecretPost(config.client_secret); }