一、get请求:
1、使用curl命令:
curl “http://www.baidu.com”du 如果这里的URL指向的是一个文件或者一幅图都可以直接下载到本地
curl -i “http://www.baidu.com” 显示全部信息
curl -l “http://www.baidu.com” 只显示头部信息
curl -v “http://www.baidu.com” 显示get请求全过程解析
二、post请求:
提交post data-form数据:
curl -d "phone=12345678962&checkCode=1234" "http://192.168.1.10:8080/test/webapi/account/login"
wget –post-data "phone=12345678962&checkCode=1234" "http://192.168.1.10:8080/test/webapi/account/login"
提交post json数据:
curl -H "Content-type: application/json" -X POST -d
'{"phone":"12345678962","checkCode":"1234"}'
http://192.168.1.10:8080/test/webapi/account/login
提交post --header --body数据:
curl 'http://xxx:8080/pushMessage' -XPOST --header 'msgType: email' -d '{"pushMsg":{"msgType":0,"content":{"template":"BW_EMPTY",}},"shardingKey":"baiwang_001"}'