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
Looking at the docs at https://github.com/kittinunf/fuel/blob/master/fuel/README.md:
Fuel.get("https://httpbin.org/get", listOf("foo" to "foo", "bar" to "bar")) .url // https://httpbin.org/get?foo=foo&bar=bar
However as far as I can see on Fuel of version 2.3.1, the parameters are dropped and the result is:
2.3.1
https://httpbin.org/get
The text was updated successfully, but these errors were encountered:
🙏
Sorry, something went wrong.
https://github.com/kittinunf/fuel/blob/2.3.1/fuel/src/main/kotlin/com/github/kittinunf/fuel/core/requests/DefaultRequest.kt#L36
url is a constructor parameter of DefaultRequest, and parameters is another constructor parameter, so, that behavior kind of makes sense.
url
DefaultRequest
parameters
We need a method to combine those two (and other necessary fields)
I think we should move over to 3.x at this point. 2.x is end of life.
True. Just wanted to add more detail to the issue.
No branches or pull requests
Bug Report
Description
Looking at the docs at https://github.com/kittinunf/fuel/blob/master/fuel/README.md:
However as far as I can see on Fuel of version
2.3.1
, the parameters are dropped and the result is:Development Machine
The text was updated successfully, but these errors were encountered: