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
POST data is included in the curl commands, but it seems that backslashes are removed along the way. So what should be posted as
curl -d "{\"id\":1002,\"shares\":[{\"id\":2,\"share\":0.9},{\"id\":3,\"share\":0.1}]}" ....
comes out as
curl -d "{"id":1002,"shares":[{"id":2,"share":0.9},{"id":3,"share":0.1}]}"
The text was updated successfully, but these errors were encountered:
Here is a test case: har-to-curl-test.har.txt
Sorry, something went wrong.
Same problem. Also, newlines dont come escaped so the resulting data can span across multiple lines
Partial fix for #5 and implement #1: use single quotes
2d3fac4
No branches or pull requests
POST data is included in the curl commands, but it seems that backslashes are removed along the way. So what should be posted as
comes out as
The text was updated successfully, but these errors were encountered: