curl
命令手册向 / 从一个服务器传输数据. 支持大多数协议,包括 HTTP, FTP, 和 POP3. 更多信息:https://curl.haxx.se.
curl {{http://example.com}} -o {{文件名}}
curl -O {{http://example.com/filename}}
curl -O -L -C - {{http://example.com/filename}}
application/x-www-form-urlencoded
):curl -d {{'name=bob'}} {{http://example.com/form}}
curl -H {{'X-My-Header: 123'}} -X {{PUT}} {{http://example.com}}
Content-Type
请求头:curl -d {{'{"name":"bob"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/users/1234}}
curl -u myusername:mypassword {{http://example.com}}
curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://example.com}}