-
Notifications
You must be signed in to change notification settings - Fork 5
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
Fail Callback URL Formatted Incorrectly #9
Comments
Hi @robwatkiss Nice catch and thanks for debugging this. Can you provide an example URL you call (including the callback you would expect) so I can add it to our tests? Best, |
Hi @mollidor - here's that example for you:
|
Thanks a lot. So you would expect us to open Is that what you observe? |
That's correct, yep. |
When the
callbackfail
URL is called it is incorrectly formatted and places the query parameters before other parts of the URL needed for some web apps using /# based routing.Expected Redirect:
https://some.website.com/#/callback/payment-fail?smpt-status=failed
Actual Redirect:
https://some.website.com/?smpt-status=failed#/callback/payment-fail
The text was updated successfully, but these errors were encountered: