Dex - Multiple Connectors workflow Issue #3491
Unanswered
SaurabhAZip
asked this question in
Q&A
Replies: 1 comment
-
Unfortunately that won't work everything before the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using multiple Identity Providers say
Now openid configuration is served through following URL
https://DOMAIN_NAME/.well-known/openid-configuration
and

https://DOMAIN_NAME
orhttps://DOMAIN_NAME/auth
opens up the page to choose between the 2 Idp's configured.Since, client uses
https://DOMAIN_NAME/.well-known/openid-configuration
path for auth, users have to select one of the IdP's configured (client uses root path for auth as configuration is served by root path)However, I want client to use(for this scenario)
https://DOMAIN_NAME/auth/github
orhttps://DOMAIN_NAME/auth/google
directly and pre-select one of the options.For that to work, Dex should be able to serve
https://DOMAIN_NAME/auth/{connector}/.well-known/openid-configuration
so that client can directly callhttps://DOMAIN_NAME/auth/{connector} for auth
.It might make sense to support
https://DOMAIN_NAME/auth/{connector}/.well-known/openid-configuration
end-point in case of multiple connectors configured in Dex.Beta Was this translation helpful? Give feedback.
All reactions