Browse Source

Add UnmetAuthenticationRequirements error constant

Co-authored-by: kevinchalet <6998306+kevinchalet@users.noreply.github.com>
pull/2425/head
copilot-swe-agent[bot] 1 month ago
parent
commit
e1ed0ebb23
  1. 1
      src/OpenIddict.Abstractions/OpenIddictConstants.cs

1
src/OpenIddict.Abstractions/OpenIddictConstants.cs

@ -245,6 +245,7 @@ public static class OpenIddictConstants
public const string UnsupportedGrantType = "unsupported_grant_type"; public const string UnsupportedGrantType = "unsupported_grant_type";
public const string UnsupportedResponseType = "unsupported_response_type"; public const string UnsupportedResponseType = "unsupported_response_type";
public const string UnsupportedTokenType = "unsupported_token_type"; public const string UnsupportedTokenType = "unsupported_token_type";
public const string UnmetAuthenticationRequirements = "unmet_authentication_requirements";
} }
public static class GrantTypes public static class GrantTypes

Loading…
Cancel
Save