-
Notifications
You must be signed in to change notification settings - Fork 523
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
feat: OAuth provider support #1010
Merged
Merged
Conversation
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
* fix: auth and token api * fix: cookie and code transformations * fix: token re-signing * fix: token endpoint * fix: license check and jwks caching * fix: exceptions * fix: refactor * fix: refactor * fix: refactor and client crud APIs * fix: token type enum * fix: process ext only on access token * fix: refactor * fix: bugs and refactor * fix: oauth clients list api * fix: consent get accept and reject * fix: login request * fix: query param transformation * fix: logout request * fix: refactor * fix: remove error debug and hint * fix: introspect api * fix: pr comments * fix: pr comments * fix: pr comment * fix: pr comment * fix: pr comments and refactor * fix: pr comments * fix: pr comments * fix: revert original http request * fix: pr comment refactor * fix: pr comment * fix: pr comment * fix: pr comment * fix: pr comments * fix: owner and pagination * fix: pr comment * fix: client id check * fix: ext related * fix: pr comment * fix: revoke APIs (#1041) * fix: revoke consent sessions * fix: revoke token * fix: revoke impl * fix: revoke session * fix: introspect impl after revoke * fix: revoke by client_id * fix: refresh token check in token exchange * fix: at hash * fix: sqlite impl * fix: client props whitelist * fix: status and query null check * fix: plugin interface update * fix: logout api * fix: ext * fix: accept consent * fix: accept consent * fix: introspect in token api * fix: keep fragment while updating query params * fix: count creds and pr comment * fix: oauth stats * fix: oauth cleanup cron task * fix: gid in refresh token * fix: inememory impl * feat: add initial payload fields to accept consent * fix: revoke cleanup * fix: stats * fix: client credentials basic * fix: authorization header * fix: authorizaion header in revoke * fix: missing table --------- Co-authored-by: Mihaly Lengyel <[email protected]> --------- Co-authored-by: Mihaly Lengyel <[email protected]>
* fix: logout apis * fix: session revoke in logout * fix: tests * feat: update logout logic to make BE integration easier * refactor: minor fixes for consistency --------- Co-authored-by: Mihaly Lengyel <[email protected]>
* fix: logout apis * fix: session revoke in logout * fix: tests * fix: tests * fix: tests * fix: tests
fix: Merge latest
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.
Summary of change
Adds oauth provider feature
Related issues
Test Plan
TODO
Documentation changes
TODO
Checklist for important updates
coreDriverInterfaceSupported.json
file has been updated (if needed)pluginInterfaceSupported.json
file has been updated (if needed)build.gradle
getPaidFeatureStats
function in FeatureFlag.java filebuild.gradle
, please make sure to add themin
implementationDependencies.json
.getValidFields
inio/supertokens/config/CoreConfig.java
if new aliases were added for any core config (similar to theaccess_token_signing_key_update_interval
config alias).git tag
) in the formatvX.Y.Z
, and then find thelatest branch (
git branch --all
) whoseX.Y
is greater than the latest released tag.app_id_to_user_id
table, make sure to delete from this table when deleting the user as well ifdeleteUserIdMappingToo
is false.Remaining TODOs for this PR
"oauth"
in it.Enforce in config check that the oauth urls dont have any path, and normalise them.We check that they are valid urls, but do not require them to not have paths