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
The OAuth provider I am using mandates that the redirect_uri be a relative path (/user/${user}/oauth_callback), and this setting cannot be altered on the provider's end. I anticipated the ability to configure lua-resty-openidc accordingly.
Actual behaviour
I had to modify the code because currently, the redirect_uri (and redirect_uri_path) is invariably transformed into an absolute URL.
Environment
Expected behaviour
The OAuth provider I am using mandates that the redirect_uri be a relative path (
/user/${user}/oauth_callback
), and this setting cannot be altered on the provider's end. I anticipated the ability to configure lua-resty-openidc accordingly.Actual behaviour
I had to modify the code because currently, the
redirect_uri
(andredirect_uri_path
) is invariably transformed into an absolute URL.voronin-ilya@381c7ce
Proposal
To ensure compatibility with the JupyterHub OAuth provider, I propose rolling back the deprecation of the redirect_uri_path option.
The text was updated successfully, but these errors were encountered: