Skip to content

Commit

Permalink
Add additional grant types to OpenIdConnectGrantTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
joegoldman2 committed Jun 20, 2024
1 parent c24bfe6 commit bfc048c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ public static class OpenIdConnectGrantTypes
public const string RefreshToken = "refresh_token";
public const string Password = "password";
public const string ClientCredentials = "client_credentials";
public const string Saml2Bearer = "urn:ietf:params:oauth:grant-type:saml2-bearer";
public const string JwtBearer = "urn:ietf:params:oauth:grant-type:jwt-bearer";
public const string DeviceCode = "urn:ietf:params:oauth:grant-type:device_code";
public const string TokenExchange = "urn:ietf:params:oauth:grant-type:token-exchange";
public const string Ciba = "urn:openid:params:grant-type:ciba";
#pragma warning restore 1591
}
}

0 comments on commit bfc048c

Please sign in to comment.