实例
# 以get的方式获取网络流
curl --request GET baidu.com
# 以form-data的参数形式post数据获取网络流
curl -d "uid=144421&stid=171073&oil_id=5" 10.211.55.3:8101/Recommendation/retailRecommend
# 显示详细的http报文信息
curl -kv baidu.com
# 指定rootca.pem作为根证书,访问时校验服务端证书的合法性
curl --cacert rootca.pem https://test/test
# 注意,下面两种带cookie的方式并不相同
# --cookie : `It is supposedly the data previously received from the server in a "Set-Cookie:" line. `
# --header
curl --cookie
curl --header 'Cookie: '
command
–cacert
指定根证书,用于校验服务端证书的合法性
-k/–insecure
不校验服务端证书的合法性