-
Notifications
You must be signed in to change notification settings - Fork 41
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
support client credentials grant from Connection.authenticate_oidc()
#419
Labels
Comments
(internal refs: CDAS-619, CDAS-622) |
soxofaan
added a commit
that referenced
this issue
May 16, 2023
soxofaan
added a commit
that referenced
this issue
May 17, 2023
worked on PR last week: #429 |
soxofaan
added a commit
that referenced
this issue
May 25, 2023
soxofaan
added a commit
that referenced
this issue
May 25, 2023
soxofaan
added a commit
that referenced
this issue
May 25, 2023
already merged #429 to have the basics in master further finetuning:
|
soxofaan
added a commit
that referenced
this issue
Jun 2, 2023
- deprecate `authenticate_oidc_authorization_code` - remove authorization code grant (and password grant) from docs - trim more fat from general OIDC docs - document `authenticate_oidc` more in detail - document env var handling from `authenticate_oidc` and `authenticate_oidc_client_credentials`
improved documentation now as well time to close |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Connection.authenticate_oidc()
currently automatically switches between refresh token auth and device code flow auth depending on the presence of recent refresh tokens.With growing interest in client credential auth, we should also add support for that under
authenticate_oidc
, that is triggered from a config setting, or the presence of certain environment variables.That will make it possible to use a generic
connection.authenticate_oidc()
snippet in code samples, notebooks, ..., which will then automatically use an appropriate auth method (device code for first time user, client credentials for CI/CD test use cases, ...)The text was updated successfully, but these errors were encountered: