curl基本使用
1.什么是curl?
curl是一个命令行工具,用于向指定的url发送请求,支持http,mqtt,ftp,rtmp,pop2,scp等各种协议
2.基本使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| curl --verbose www.baidu.com
curl -A "curl" www.baidu.com
curl -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0" https://www.baidu.com/index.html
curl -b "x_key=asjdflkdjaslfdjklasjlkf" http://www.google.com/index.html
curl -c coookie.txt -v http://www.baidu.com/index.html
curl -d "name=admin&password=password" -X POST https://www.baidu.com/index.html
curl -e "http://www.baidu.com/index.html" https://www.google.com
curl -F 'file=@photo.png' https://baidu.com/profile
curl -F "file=@photo.png;image/png" -X POST https://www.baidu.com/profile curl -F "file=@photo.png;filename=me.png" -X POST https://www.baidu.com/profile
|
3.curl配置文件