Remove deprecated implicit authorization grant type
Closes gh-11506
This commit is contained in:
@@ -569,8 +569,8 @@ 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"}?
|
||||
client-registration.attlist &=
|
||||
## The OAuth 2.0 Authorization Framework defines four Authorization Grant types. The supported values are authorization_code, client_credentials, password and implicit.
|
||||
attribute authorization-grant-type {"authorization_code" | "client_credentials" | "password" | "implicit"}?
|
||||
## The OAuth 2.0 Authorization Framework defines four Authorization Grant types. The supported values are authorization_code, client_credentials and password.
|
||||
attribute authorization-grant-type {"authorization_code" | "client_credentials" | "password"}?
|
||||
client-registration.attlist &=
|
||||
## The client’s registered redirect URI that the Authorization Server redirects the end-user’s user-agent to after the end-user has authenticated and authorized access to the client.
|
||||
attribute redirect-uri {xsd:token}?
|
||||
|
||||
@@ -1792,7 +1792,7 @@
|
||||
<xs:attribute name="authorization-grant-type">
|
||||
<xs:annotation>
|
||||
<xs:documentation>The OAuth 2.0 Authorization Framework defines four Authorization Grant types. The
|
||||
supported values are authorization_code, client_credentials, password and implicit.
|
||||
supported values are authorization_code, client_credentials and password.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:simpleType>
|
||||
@@ -1800,7 +1800,6 @@
|
||||
<xs:enumeration value="authorization_code"/>
|
||||
<xs:enumeration value="client_credentials"/>
|
||||
<xs:enumeration value="password"/>
|
||||
<xs:enumeration value="implicit"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
|
||||
Reference in New Issue
Block a user