-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Open Id connect parsing bug. (#2776)
Error in state machine logic, missing "else". Introduced in #2657 Fixes #2772 Co-authored-by: Keegan Caruso <keegancaruso@microsoft.com>
- Loading branch information
1 parent
5853e4c
commit 7841666
Showing
6 changed files
with
44 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...dentityModel.Protocols.OpenIdConnect.Tests/OpenIdConnectMetadataEnd2EndAcrValuesLast.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"issuer": "https://sts.windows.net/d062b2b0-9aca-4ff7-b32a-ba47231a4002/", | ||
"authorization_endpoint": "https://login.windows.net/d062b2b0-9aca-4ff7-b32a-ba47231a4002/oauth2/authorize", | ||
"token_endpoint": "https://login.windows.net/d062b2b0-9aca-4ff7-b32a-ba47231a4002/oauth2/token", | ||
"token_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt" ], | ||
"jwks_uri": "JsonWebKeySetEnd2End.json", | ||
"response_types_supported": [ "code", "id_token", "code id_token" ], | ||
"response_modes_supported": [ "query", "fragment", "form_post" ], | ||
"subject_types_supported": [ "pairwise" ], | ||
"scopes_supported": [ "openid" ], | ||
"id_token_signing_alg_values_supported": [ "RS256" ], | ||
"microsoft_multi_refresh_token": true, | ||
"check_session_iframe": "https://login.windows.net/d062b2b0-9aca-4ff7-b32a-ba47231a4002/oauth2/checksession", | ||
"end_session_endpoint": "https://login.windows.net/d062b2b0-9aca-4ff7-b32a-ba47231a4002/oauth2/logout", | ||
"authorization_details_types_supported": [ "account_information" ], | ||
"acr_values_supported": [ "0", "id-simple", "id-multifactor" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters