Fixed RP-Initiated Logout To Accept id_token_hint#829
Merged
schlenk merged 3 commits intoCZ-NIC:masterfrom Nov 11, 2022
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #829 +/- ##
==========================================
- Coverage 63.80% 63.77% -0.04%
==========================================
Files 64 64
Lines 11877 11877
Branches 2158 2158
==========================================
- Hits 7578 7574 -4
- Misses 3695 3699 +4
Partials 604 604
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Contributor
Author
|
@tpazderka @schlenk Can you review and prepare the release for 3.11? |
Suppress warnings about implicit optional.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses #826
According to OIDC specs on RP-Initiated logout, the expected arguments are
post_logout_redirect_uriandid_token_hintthat accepts raw ID token JWT.Added a default parameter
id_token_hintinoic.Client.construct_EndSessionRequest&oic.Client.do_end_session_requestto make them comply with OIDC specs.