-
Notifications
You must be signed in to change notification settings - Fork 14
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
select ext jwt provider #768
Conversation
free_ziti_jwt_signer(&clt->signer_cfg); | ||
|
||
clt->signer_cfg.client_id = cfg->client_id ? strdup(cfg->client_id) : NULL; | ||
clt->signer_cfg.provider_url = strdup(cfg->provider_url); |
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.
all the others have a check first, should this also check? cfg->provider_url ? dup : NULL;?
{"scope", scope}, | ||
{"response_type", "code"}, | ||
{"redirect_uri", default_cb_url}, | ||
{"code_challenge", req->code_challenge}, | ||
{"code_challenge_method", "S256"}, | ||
{"audience", clt->signer_cfg->audience ? | ||
clt->signer_cfg->audience : "openziti"}, | ||
{"audience", clt->signer_cfg.audience ? |
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.
is there a method to be able to add additional params to the authorization endpoint? auth0 is funky about this and I think maybe zitadel was too? it'd be nice to be able to supply additional params in some way in case?
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.
parameters should have to come from signer config, we can add them when/if controller supports them
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.
minor comments but seems fine to me!
No description provided.