选项说明:https://blog.csdn.net/deliciousion/article/details/78062521
http
1、get请求
curl http://xxx.xxx.xxx.xxx:port/xxxxxxxx
2、post请求
curl -XPOST http://xxx.xxx.xxx.xxx:port/xxxxxxxx --data '{"xxxx" : "xxxx", "xxxx" : "xxxxx"}' -H "Content-Type: application/json"
-H表示自定义header
--data表示body
-X表示请求方式
3、put请求
curl -XPUT http://xxx.xxx.xxx.xxx:port/xxxxxxxx --data '{"xxxx" : "xxxx", "xxxx" : "xxxxx"}' -H "Content-Type: application/json"
4、delete请求
curl -XDELETE http://xxx.xxx.xxx.xxx:port/xxxxxxxx --data '{"xxxx" : "xxxx", "xxxx" : "xxxxx"}' -H "Content-Type: application/json"
https
1、post请求
curl --key client.key --cert client.crt -XPOST https://xxx.xxx.xxx.xxx:port/xxxxxxxx --data '{"xxxx" : "xxxx", "xxxx" : "xxxxx"}' -H "Content-Type: application/json" -k