chore: fallback to client_secret_post for OIDC

This commit is contained in:
Aarnav Tale
2026-01-15 21:54:55 -05:00
parent 42ffe69486
commit 62325f7c86
+2 -2
View File
@@ -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);
}