Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2024-01-05 | 623 Bytes | |
v4.9.0 source code.tar.gz | 2024-01-05 | 448.4 kB | |
v4.9.0 source code.zip | 2024-01-05 | 1.3 MB | |
Totals: 3 Items | 1.7 MB | 0 |
BREAKING CHANGE: the JSON generator (curlconverter.toJsonString()
), when the request body can't be parsed as JSON or as a query string (when the Content-Type
header is set to application/json
or application/x-www-form-urlencoded
respectively), now outputs it as just a string, like this: "data": "unparsabledata"
. Previously, it would generate a one element dictionary with the data as the first key, like "data": {"unparsabledata": ""}
.
New generators:
- Python + http.client
- Perl
- Julia
- Lua
Minor changes:
- if Node + request has invalid characters in the URL, wrap it in
encodeURI()