We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This page says
The default authentication type is set using defaultType: "form" Following types of the authentications are supported.
However, when I set defaultType: "oauth" and provide both oauth and form configuration like
defaultType: "oauth"
oauth
form
authentication: defaultType: "oauth" oauth: issuer: "..." clientId: "..." clientSecret: "..." tokenEndpoint: "..." authorizationEndpoint: "..." jwkEndpoint: "..." redirectUrl: "..." redirectWebUrl: "..." userIdField: "..." scopes: - "..." form: selfSignKeyPair: privateKeyRsa: "..." publicKeyRsa: "..."
and open /trino-gateway, I can only see login/password form.
/trino-gateway
I suspect this is because /loginType returns { "code": 200, "msg": "Ok", "data": "form" }
/loginType
{ "code": 200, "msg": "Ok", "data": "form" }
so the form is rendered instead of a "Sign in with External Authentication" button.
Is this expected? Can I support both form/basic auth and oauth (by default)?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This page says
However, when I set
defaultType: "oauth"
and provide bothoauth
andform
configuration likeand open
/trino-gateway
, I can only see login/password form.I suspect this is because
/loginType
returns{ "code": 200, "msg": "Ok", "data": "form" }
so the form is rendered instead of a "Sign in with External Authentication" button.
Is this expected? Can I support both form/basic auth and oauth (by default)?
The text was updated successfully, but these errors were encountered: