-
Notifications
You must be signed in to change notification settings - Fork 367
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
Allow setting different discovery URL #371
Comments
So you want to set a different openid-configuration endpoint?
|
Yes, exactly, something that would override this whole line and become the URL for |
So if you could extend the class and overwrite a new to build function like below that would be a solution? class CustomOpenIDConnectClient extends OpenIDConnectClient
{
protected function getWellKnownConfigUrl()
{
return "https://custom-url.example/custom-endpoint";
}
} |
Yes, that would be a fine solution for my case |
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using https://www.rfc-editor.org/rfc/rfc7628.html a full URL to an OIDC discovery document is returned, not just an issuer to which a well-known can be appended. So it would be useful to have a way to put this full URL in to be used for discovery, overriding the default .well-known URL.
The text was updated successfully, but these errors were encountered: