Replies: 1 comment 2 replies
-
|
Hello, @addevine.
|
Beta Was this translation helpful? Give feedback.
2 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.
-
Using the oidc connector to login to upstream Okta, I'd like to include a "clients" claim to the Dex JWT. Is there a way to add this claim from the upstream oidc token to the Dex token?
Logging in with Okta oidc provides a claim named "clients" in its token
{ .... "clients": .., .... }However the token from Dex does not include this "clients" claim. Is there a way to add it? I've tried claim mappings to made groups map to clients, but as shows below there is not even a groups in this Dex token.
{ "iss": "...", "sub": "...", "aud": "...", "exp": ..., "iat": ..., "at_hash": "...-", "email": "...", "email_verified": ..., "name": "..." }Beta Was this translation helpful? Give feedback.
All reactions