-
Notifications
You must be signed in to change notification settings - Fork 89
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
Wrong signature for query string with duplicate parameter keys #69
Comments
Pull request: #70 |
I ran into the same issue today but for POST parameters with multiple values. For anyone experiencing this as well, here's how I fixed it. 1. Override the
|
When sending a request which uses a query containing duplicate parameter keys, the signature is incorrectly generated.
eg. ?parameter=myvalue¶mter=myvalue2
This is being caused by the usage of "http_build_query" instead of the Guzzle "build_query" function in "createBaseString".
The text was updated successfully, but these errors were encountered: