linux 使用shell发送http请求

 一、curl

1. get请求

curl命令默认下就是使用get方式发送http请求。

curl www.baidu.com

2. post请求 

curl -X POST www.baidu.com

 使用-d带参数请求参数,形式如下:

curl -X POST  -d 
//curl -X 请求方式(POST|GET) 请求地址 -d 请求数据 
curl -X POST http://172.21.128.170:9000/v2/diskdomain/domain/construct -d '{"name":"test1","desc":"test1","construct_type":1,"DtbDiskInfoList":[1,2,3,4],"sas_hotspare_strategy":"mid","nlsas_hotspare_strategy":"mid","ssd_hotspare_strategy":"mid"}'

 

.其他参数

 

linux 使用shell发送http请求_第1张图片 

linux 使用shell发送http请求_第2张图片

  • -I 
    只显示头部信息。

  • -i 
    显示全部信息。

  • -v 
    显示解析全过程。

  • -X

  • 只显示请求结果

 

 

你可能感兴趣的:(linux)