We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When creating a request that contains query parameters, for example
let url = "http://something.com/get?param1=value1"; let request = Request::get(url).build().unwrap();
the request created will target http://something.com/get?param1=value1& and not the original url, http://something.com/get?param1=value1 (note there is an '&' added).
See code above. Also I've provided a test on the PR #497
The created request should have exactly the same url that was given as a parameter.
A '&' has been added to the end of the url.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Bug
When creating a request that contains query parameters, for example
the request created will target http://something.com/get?param1=value1& and not the original url, http://something.com/get?param1=value1 (note there is an '&' added).
Steps to Reproduce
See code above. Also I've provided a test on the PR #497
Expected Behavior
The created request should have exactly the same url that was given as a parameter.
Actual Behavior
A '&' has been added to the end of the url.
The text was updated successfully, but these errors were encountered: