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
The httpie command http :8080/xxx out_1[in_1]=value_1 out_2[in_2]=value_2 out_3=value_3 sends the following payload:
http :8080/xxx out_1[in_1]=value_1 out_2[in_2]=value_2 out_3=value_3
{ "out_1": { "in_1": "value_1" }, "out_2": { "in_2": "value_2" }, "out_3": "value_3" }
But the online tool creates the following curl command:
curl --header 'Content-Type: application/json' --data '{"out_1[in_1]":"value_1","out_2[in_2]":"value_2","out_3":"value_3"}' localhost:8080/xxx
Which sends the payload {"asId[ipv4addr]":"1.1.1.1","qos":"QOS_E","ueId[msisdn]":"+34666777888"}
{"asId[ipv4addr]":"1.1.1.1","qos":"QOS_E","ueId[msisdn]":"+34666777888"}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The httpie command
http :8080/xxx out_1[in_1]=value_1 out_2[in_2]=value_2 out_3=value_3
sends the following payload:But the online tool creates the following curl command:
Which sends the payload
{"asId[ipv4addr]":"1.1.1.1","qos":"QOS_E","ueId[msisdn]":"+34666777888"}
The text was updated successfully, but these errors were encountered: