-
Notifications
You must be signed in to change notification settings - Fork 34
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
Connection parameter breaks SAML login #11
Comments
The connection parameter is being added with an & as the separator between url path and the query parameters but it should be using a ?. The SSO is not demonstrable because of this issue |
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward? |
This is definitely still broken. I just worked around it using the custom url. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When the
connection
parameter is specified in theNew Application
form, it incorrectly gets encoded as&
to login url instead of?
which fails the SAML loginBroken URL:
https://{domain}.auth0.com/samlp/HbOLz0nYYKCwR0sjBf2MoUo2w5jaAGnI&connection=db
Working URL:
https://internalserver.auth0.com/samlp/HbOLz0nYYKCwR0sjBf2MoUo2w5jaAGnI?connection=db
The text was updated successfully, but these errors were encountered: