16

I'm wondering how to make a POST request with a from data of empty json through HTTPie? The corresponding Curl solution is here:

curl -X POST -H "Content-Type: application/json" -d '{}' http://ooxx.asdf/
4

3 に答える 3

25

逐語的なリクエスト データは、 redirected を介してSTDIN指定できます。

$ echo '{}' | http httpbin.org/post

本文を含むリクエストの場合:

于 2014-04-08T13:31:35.490 に答える