-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DRIVERS-2836 OIDC Spec Cleanup #1551
Merged
Merged
Changes from 22 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
6e09e49
DRIVERS-2836 Only invalidate cached OIDC access tokens if the server …
blink1073 ed669eb
regenerate json
blink1073 a25518c
restore comment
blink1073 06e0110
add spec test for Refresh Token Is Passed To The Callback
blink1073 fd9481a
Merge branch 'master' of github.com:mongodb/specifications into DRIVE…
blink1073 739ae61
address review
blink1073 6ed2c94
Update source/auth/auth.md
blink1073 cef1ad2
Merge branch 'master' of github.com:mongodb/specifications into DRIVE…
blink1073 7ae7fea
Merge branch 'DRIVERS-2836' of github.com:blink1073/specifications in…
blink1073 958148e
Update source/auth/tests/mongodb-oidc.md
blink1073 83952e7
OIDC spec updates
blink1073 9027606
Merge branch 'master' of github.com:mongodb/specifications into DRIVE…
blink1073 3d98b29
Merge branch 'DRIVERS-2836' of github.com:blink1073/specifications in…
blink1073 b4e7905
update auth logic
blink1073 6815eb4
update error handling
blink1073 5967353
Update source/auth/auth.md
blink1073 3242bea
Update source/auth/auth.md
blink1073 ddd4054
Update source/auth/auth.md
blink1073 c263ad2
Update source/auth/auth.md
blink1073 119fce1
address review
blink1073 0f6f3bc
Update source/auth/tests/mongodb-oidc.md
blink1073 94ef18d
fix connection string tests
blink1073 13dc54c
clarify test conditions
blink1073 134c1f4
clarify spec test
blink1073 f24a075
fix SASL conversation
blink1073 5f63fea
fix grammar
blink1073 9e268e7
convert two unified tests to prose tests
blink1073 8cef9de
Update source/auth/tests/mongodb-oidc.md
blink1073 8471762
Update source/auth/tests/mongodb-oidc.md
blink1073 1716f23
Merge branch 'master' into DRIVERS-2836
blink1073 531753e
lint
blink1073 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the intended behavior when
clientId
isNone
? The code I have written on client side assumes theclientId
will always exist.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be None if the user used a Human Callback and the IdP is configured on the server with
supportsHumanFlows:False
. They shouldn't really be doing that, but it is allowed. See https://jira.mongodb.org/browse/DRIVERS-2773 for details.