curl with post json

来源:互联网 发布:昌泰祥淘宝店可信吗 编辑:程序博客网 时间:2024/05/21 15:40
linux :
curl -H "Content-Type: application/json" -d '{"username":"xyz","password":"xyz"}' http://localhost/aa

windows :

curl -H "Content-Type: application/json" -d "{ \"key1\": \"value1\" }" http://localhost/aa


0 0