如何读取通过curl命令传递的json文件

时间:2015-10-22 06:26:50

标签: javascript json node.js rest curl

curl -H“Content-Type:application / json”-X POST --data“@ data.json”http://localhost:3000/

1 个答案:

答案 0 :(得分:0)

curl可用于发送多种类型的内容,但默认值为application / x-www-form-urlencoded。如果你需要通过它发送文件,你需要把它放在标题中,并且为了放置一个文件你需要为它指定-d param。

使用相同的样本可以是:

 $ curl -vX POST http://<servername>/<api>/v1/<jsonfilename.json> -d @<file.json> \
--header "Content-Type: application/json"