From 1af7e4b363731bb58ad2c676bb1e3638558938d7 Mon Sep 17 00:00:00 2001 From: Mitar Date: Sun, 28 Jan 2024 21:01:06 +0100 Subject: [PATCH] fix: do not list client_secret_jwt as supported --- client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.go b/client.go index 9b4ce02cb..7bf3b1ad1 100644 --- a/client.go +++ b/client.go @@ -63,11 +63,11 @@ type OpenIDConnectClient interface { GetRequestObjectSigningAlgorithm() string // Requested Client Authentication method for the Token Endpoint. The options are client_secret_post, - // client_secret_basic, client_secret_jwt, private_key_jwt, and none. + // client_secret_basic, private_key_jwt, and none. GetTokenEndpointAuthMethod() string // JWS [JWS] alg algorithm [JWA] that MUST be used for signing the JWT [JWT] used to authenticate the - // Client at the Token Endpoint for the private_key_jwt and client_secret_jwt authentication methods. + // Client at the Token Endpoint for the private_key_jwt authentication method. GetTokenEndpointAuthSigningAlgorithm() string }