You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using Trino with a custom third party OIDC provider, however this custom OIDC provider doesn't support calling the user info endpoint using POST.
In this case it's a custom OIDC provider from a third party. We have limited control or reach to have it resolved.
As mentioned in the PR, according the openid spec, GET is recommended, while we use POST in Trino. However it's also said in the spec that both GET and POST should be supported, so I follow your reasoning. However just saying, there are actually a lot of custom OIDC providers in the wild. From an adoption perspective, if it enables a few customers to get started quickly with Trino compared to the negligible amount of complexity of adding and maintaining this configuration parameter, why not do it?
We are using Trino with a custom third party OIDC provider, however this custom OIDC provider doesn't support calling the user info endpoint using POST.
The Openid spec specifies that both GET and POST should work, however unfortunately this is not the case (see https://openid.net/specs/openid-connect-core-1_0.html#UserInfoRequest).
We would like to make this behaviour configurable with POST as default.
The text was updated successfully, but these errors were encountered: