Linux的curl指令使用
curl指令发送GET请求
格式如下:
curl -H [header参数] -XGET URL
假设URL地址为:http:
Linux的curl指令使用
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"
curl命令解读
curl 是运维过程中常用的命令。常见的用途:测试地址url是否通畅;下载文件。
为啥用来测试地址是否通畅?
因为有时候某些场景下受到限制不能直接访问,比如:服务器上是没有桌面版的软件,如:postman、idea、浏览器,只有shell 命令行环境,这些情况需要用curl 命令去试探。但不包含你是真的很懒。
下面是我自己遇到的场景:
1、curl 请求 一个接口 看看通不通
$ curl -H "Content-Type:application/json;charset=utf-8" -H "Authorization:123456789wertyuiosdfghjklxcvbn" http://192.168.xxx.xxx/xxxservice/api/v2/core/start?channel=
-H:参数添加 HTTP 请求的标头,一个标头前面使用一个-H。
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持好代码网。