一、curl指令发送GET请求,格式如下:
curl -H [header参数] -XGET URL
假设URL地址为:http://localhost:8001/test,GET请求,参数为startTime,endTime
1、header传多个参数
1)可以用多个-H传多个header参数,如下:
curl -H “token:122212eee23” -H “id:123456” -XGET http://localhost:8001/test
或者 curl -H “token:122212eee23” -H “id:123456” http://localhost:8001/test
2)-H 后面接的header参数,每个参数占一行,也可以传多个参数,如下:
curl -H “token:122212eee23
id:123456″ http://localhost:8001/test
2、GET请求传参
(容易出错的地方,亲测)
1)&前面加字符\取消转义,如下:
curl -H “token:122212eee23” -H “id:123456”
-XGET http://localhost:8001/test?startTime=20220215000000\&endTime=20220215235959
2)URL加上双引号
curl -H “token:122212eee23” -H “id:123456”
-XGET “http://localhost:8001/test?startTime=20220215000000&endTime=20220215235959”
二、curl指令发送POST请求,格式如下:
curl -H[header参数,多个参数用多个-H隔开] -X POST -d '参数列表' URL
如下例子:假设URL为:http://localhost:8080/api
curl -H "Content-Type: application/json" -X POST -d '{"userId":1,"name":"学生"}' "http://localhost:8080/api"