Document Jwt Client Authentication support
Closes gh-9578
This commit is contained in:
+2
-2
@@ -526,8 +526,8 @@ client-registration.attlist &=
|
||||
## The client secret.
|
||||
attribute client-secret {xsd:token}?
|
||||
client-registration.attlist &=
|
||||
## The method used to authenticate the client with the provider. The supported values are client_secret_basic, client_secret_post and none (public clients).
|
||||
attribute client-authentication-method {"client_secret_basic" | "basic" | "client_secret_post" | "post" | "none"}?
|
||||
## The method used to authenticate the client with the provider. The supported values are client_secret_basic, client_secret_post, private_key_jwt, client_secret_jwt and none (public clients).
|
||||
attribute client-authentication-method {"client_secret_basic" | "basic" | "client_secret_post" | "post" | "private_key_jwt" | "client_secret_jwt" | "none"}?
|
||||
client-registration.attlist &=
|
||||
## The OAuth 2.0 Authorization Framework defines four Authorization Grant types. The supported values are authorization_code, client_credentials, password, implicit, as well as, extension grant type urn:ietf:params:oauth:grant-type:jwt-bearer.
|
||||
attribute authorization-grant-type {"authorization_code" | "client_credentials" | "password" | "implicit" | "urn:ietf:params:oauth:grant-type:jwt-bearer"}?
|
||||
|
||||
+4
-1
@@ -1657,7 +1657,8 @@
|
||||
<xs:attribute name="client-authentication-method">
|
||||
<xs:annotation>
|
||||
<xs:documentation>The method used to authenticate the client with the provider. The supported values are
|
||||
client_secret_basic, client_secret_post and none (public clients).
|
||||
client_secret_basic, client_secret_post, private_key_jwt, client_secret_jwt and none
|
||||
(public clients).
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
@@ -1666,6 +1667,8 @@
|
||||
<xs:enumeration value="basic"/>
|
||||
<xs:enumeration value="client_secret_post"/>
|
||||
<xs:enumeration value="post"/>
|
||||
<xs:enumeration value="private_key_jwt"/>
|
||||
<xs:enumeration value="client_secret_jwt"/>
|
||||
<xs:enumeration value="none"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
Reference in New Issue
Block a user