curl常用语法举例
选项说明: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
curl在jenkins中调用变量的情况
curl -X POST http://xxxxxxx/xxxxxx -d '{"feature":"后台管理","status":"finish","replay_result":"'${replay_detail}'", "result_download":"'${download_url}'"}' -H "Content-Type: application/json"