小编典典

使用HTTPie发送嵌套的JSON对象

json

我正在尝试使用HTTPie进行分析以发送一些嵌套的JSON对象,但我找不到方法。很清楚如何发送JSON对象,而不发送嵌套对象,例如

{“ user”:{“ name”:“ john”“ age”:10}}


阅读 609

收藏
2020-07-27

共1个答案

小编典典

您可以通过传递整个JSONstdin

$ echo '{ "user": { "name": "john", "age": 10 } }' | http httpbin.org/post

或者使用以下命令将原始JSON指定为值:=

$ http httpbin.org/post user:='{"name": "john", "age": 10 }'
2020-07-27