1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-09 10:01:45 +03:00

oauth2-types: urn:ietf:params:oauth:grant-type:jwt-bearer

This commit is contained in:
Quentin Gliech
2022-12-02 15:53:07 +01:00
parent 989e464dd0
commit d58dab702b

View File

@ -533,6 +533,10 @@ pub enum GrantType {
#[display("urn:ietf:params:oauth:grant-type:device_code")]
DeviceCode,
/// [`https://datatracker.ietf.org/doc/html/rfc7523#section-2.1`](https://www.rfc-editor.org/rfc/rfc7523#section-2.1)
#[display("urn:ietf:params:oauth:grant-type:jwt-bearer")]
JwtBearer,
/// [`urn:openid:params:grant-type:ciba`](https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html)
#[display("urn:openid:params:grant-type:ciba")]
ClientInitiatedBackchannelAuthentication,