相关链接
语法
1 | $ curl [option] [url] |
-i
1 | // 带上 protocol 信息 |
GET
1 | $ curl -i URL |
POST
1 | $ curl -d "id=1" URL |
PUT
1 | $ curl -T uploadfile URL |
user-agent
用户代理
1 | $ curl -A "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" URL |
cookie
1 | $ curl -b "id=1" URL |
header
1 | $ curl -H "Content-Type: application/json" URL |
登录账号密码
1 | $ curl -u name:password URL |
挂代理
1 | $ curl -x 123.178.2.103:80001 URL |
文件下载
1 | // 保存到当前文件夹 |
进度条显示当前的传送状态
1 | $ curl -# URL |
伪造 referer
1 | $ curl -e "www.linux.com" URL |