前言:
如今你们对“c语言curl”大体比较关怀,朋友们都需要学习一些“c语言curl”的相关知识。那么小编同时在网络上网罗了一些关于“c语言curl””的相关内容,希望朋友们能喜欢,各位老铁们快快来学习一下吧!curl命令 是一个利用URL规则在命令行下工作的文件传输工具。它支持文件的上传和下载,所以是综合传输工具,但按传统,习惯称curl为下载工具。作为一款强力工具,curl支持包括HTTP、HTTPS、ftp等众多协议,还支持POST、cookies、认证、从指定偏移处下载部分文件、用户代理字符串、限速、文件大小、进度条等特征。
命令语法
> curl (选项)(参数)命令选项
-A/--user-agent <string> 设置用户代理发送给服务器-b/--cookie <name=string/file> cookie字符串或文件读取位置-c/--cookie-jar <file> 操作结束后把cookie写入到这个文件中-C/--continue-at <offset> 断点续转-D/--dump-header <file> 把header信息写入到该文件中-e/--referer 来源网址-f/--fail 连接失败时不显示http错误-o/--output 把输出写到该文件中-O/--remote-name 把输出写到该文件中,保留远程文件的文件名-r/--range <range> 检索来自HTTP/1.1或FTP服务器字节范围-s/--silent 静音模式。不输出任何东西-T/--upload-file <file> 上传文件-u/--user <user[:password]> 设置服务器的用户和密码-w/--write-out [format] 什么输出完成后-x/--proxy <host[:port]> 在给定的端口上使用HTTP代理-#/--progress-bar 进度条显示当前的传送状态文件下载curl命令可以用来执行下载、发送各种HTTP请求,指定HTTP头部等操作curl是将下载文件输出到stdout,将进度信息输出到stderr,不显示进度信息使用–silent选项。
> curl --silent下载文件到指定的文件小写-o,大写 -O 保存文件和它的原始文件名
> curl -o 2.html
大写 -O 保存文件和它的原始文件名
> curl -O
--progress显示进度条
> curl -o 2.html --progress断点续传
> curl -O -u 'rumenz':'test'
然后你的连接突然断开,你可以用以下命令继续下载
> curl -C - -O -u 'rumenz':'test'
注意断点续传的参数是-C, 要自动续传的话要使用 -C -, 否则需要手工指定断点的字节位置.
伪造请求来源
> curl -e
参照页是位于HTTP头部中的一个字符串,用来表示用户是从哪个页面到达当前页面的,如果用户点击网页A中的某个连接,那么用户就会跳转到B网页,网页B头部的参照页字符串就包含网页A的URL。也可以使用--referer选项指定参照页字符串.
-H参数可以通过直接添加标头 Referer,达到同样效果
> curl -H 'Referer: ;设置请求header
> curl -H "Host:rumenz.com" -H "accept-language:zh-cn" URLcurl的带宽控制
> curl --limit-rate 200k用curl进行认证
使用curl选项 -u 可以完成HTTP或者FTP的认证,可以指定密码,也可以不指定密码在后续操作中输入密码:
> curl -u user:pwd ; curl -u user只打印响应头
> curl -I 200 OKServer: openresty/1.19.3.1Date: Wed, 02 Jun 2021 13:37:41 GMTContent-Type: text/html; charset=utf-8Connection: keep-alive使用curl模拟get请求
直接显示网页内容
> curl
显示请求头和网页内容
> curl -i 200 OKServer: openrestyDate: Wed, 02 Jun 2021 14:02:30 GMTContent-Type: text/plainContent-Length: 8Last-Modified: Wed, 02 Jun 2021 14:00:57 GMTConnection: keep-aliveETag: "60b78f19-8"Accept-Ranges: bytes123456
直接显示网页内容
> curl -l
显示get请求全过程解析
> curl -v
·
使用curl模拟post请求
> curl -d "param1=value1¶m2=value2" ; curl -d'login=rumenz&password=123' -X POST ; curl -d 'login=rumenz' -d 'password=123' -X POST
--data-urlencode 参数等同于-d,发送 POST请求的数据体,区别在于会自动将发送的数据进行 URL 编码.
> curl --data-urlencode 'comment=hello world'上传文本文件
> curl -d '@data.txt'post json格式的数据
> curl -l -H 'Content-type: application/json' -X POST -d '{"rumenz":"123"}'向服务器发送 Cookie
> curl --cookie "user=rumenz&pass=123456"Cookie写入到一个文件
> curl -c cookies.txt上传二进制文件
-F 参数用来向服务器上传二进制文件。
> curl -F "file=@123.png"
上面命令会给 HTTP 请求加上标头 Content-Type: multipart/form-data ,然后将文件123…png作为file字段上传。
-F 参数可以指定MIME 类型。
> curl -F 'file=@123.png;type=image/png'
上面命令指定 MIME 类型为image/png,否则 curl 会把 MIME 类型设为 application/octet-stream。
-F参数也可以指定文件名。
> curl -F 'file=@123.png;filename=rumenz.png'
上面命令中,原始文件名为123.png,但是服务器接收到的文件名为rumenz.png。
请求跟随服务器的重定向
-L参数会让 HTTP 请求跟随服务器的重定向。curl 默认不跟随重定向。
> curl -L -d 'rumenz=123'调试参数
-v 参数输出通信的整个过程,用于调试。
> curl -v * Trying 150.109.147.28...* TCP_NODELAY set* Connected to json.im (150.109.147.28) port 443 (#0)* ALPN, offering h2* ALPN, offering http/1.1* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH* successfully set certificate verify locations:* CAfile: /etc/ssl/cert.pem CApath: none* TLSv1.2 (OUT), TLS handshake, Client hello (1):* TLSv1.2 (IN), TLS handshake, Server hello (2):* TLSv1.2 (IN), TLS handshake, Certificate (11):* TLSv1.2 (IN), TLS handshake, Server key exchange (12):* TLSv1.2 (IN), TLS handshake, Server finished (14):* TLSv1.2 (OUT), TLS handshake, Client key exchange (16):* TLSv1.2 (OUT), TLS change cipher, Client hello (1):* TLSv1.2 (OUT), TLS handshake, Finished (20):* TLSv1.2 (IN), TLS change cipher, Client hello (1):* TLSv1.2 (IN), TLS handshake, Finished (20):* SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256* ALPN, server accepted to use http/1.1* Server certificate:* subject: CN=json.im* start date: Apr 27 14:50:23 2021 GMT* expire date: Jul 26 14:50:23 2021 GMT* subjectAltName: host "json.im" matched cert's "json.im"* issuer: C=US; O=Let's Encrypt; CN=R3* SSL certificate verify ok.> GET /1.txt HTTP/1.1> Host: json.im> User-Agent: curl/7.54.0> Accept: */*>< HTTP/1.1 200 OK< Server: openresty< Date: Wed, 02 Jun 2021 14:31:36 GMT< Content-Type: text/plain< Content-Length: 8< Last-Modified: Wed, 02 Jun 2021 14:00:57 GMT< Connection: keep-alive< ETag: "60b78f19-8"< Accept-Ranges: bytes<123456* Connection #0 to host json.im left intact
--trace参数也可以用于调试,还会输出原始的二进制数据。
> curl --trace -
原文链接: