- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
在网络请求与数据交互领域,curl 凭借其轻量、灵活的特性成为开发者与运维人员的必备工具。无论是日常接口调试、文件传输,还是复杂的性能分析,curl 都能通过丰富的参数组合实现高效操作。本文以 2025 年 3 月 10 日为时间背景,系统梳理 curl 的 10 类高频使用场景,结合实例与输出示例,帮助大家快速掌握其核心用法。
curl -i "http://www.landui.com/uacserver/user/personalsettings?userId=20722351"
HTTP/1.1 200
Server: nginx/1.13.7
Date: Tue, 10 Oct 2023 02:45:37 GMT
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Vary: Accept-Encoding
processId: dc5a8a60-d37b-4e87-b111-dd6eab484b17
upstream_http_reqid: dc5a8a60-d37b-4e87-b111-dd6eab484b17
processTime: 4
upstream_http_time: 4
…… 数据内容
curl -i -X POST -d 'data={"timenewsID":"1447","shareScope":{"type":"0","scope_id":[0]}}' 'http://www.landui.com/microblog/timenews/modifysharescope?user_id=62051317&session_id=2dc60ccf24a6088a1e6a638205ed5f66f11dac97'
curl -i -X POST -F "user_id=1453280&session_id=61f730d921eed96d88f34cb18d0e592d6f21202b" 'http://www.landui.com/uccserver/uccapi/user/check'
curl --data-urlencode "value& 1" http://www.landui.com
curl -i -X POST -H "Content-Type: application/json" -d "{"newid":"1447"}'" 'http://www.landui.com/microblog/timenews/timenewpraise/1447'
curl -O http://www.landui.com/software/gettext/manual/gettext.html
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1556k 100 1556k 0 0 121k 0 0:00:12 0:00:12 --:--:-- 135k
curl -o mygettext.html http://www.landui.com/software/gettext/manual/gettext.html
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1556k 100 1556k 0 0 164k 0 0:00:09 0:00:09 --:--:-- 182k
curl -F "userId=88407056" -F "file=@mygettext.html" "http://www.landui.com/eamsgateway/eams-support/setting/uploadFile"
curl -v -F "file=@mygettext.html" "https://www.landui.com/eamsgateway/eams-support/setting/uploadFile"
* Trying 10.255.0.71...
* TCP_NODELAY set
* Connected to testweb.quanshi.com (10.255.0.71) port 80 (#0)
> POST /eamsgateway/eams-support/setting/uploadFile HTTP/1.1
> Host: testweb.quanshi.com
> User-Agent: curl/7.64.1
> Accept: */*
> Content-Length: 1594364
> Content-Type: multipart/form-data; boundary=------------------------3fa4d90f3c8f29f3
> Expect: 100-continue
>
< HTTP/1.1 100 Continue
* We are completely uploaded and fine
< HTTP/1.1 200 OK
< Server: nginx
< Date: Tue, 10 Oct 2023 04:57:30 GMT
< Content-Type: application/json;charset=UTF-8
< Transfer-Encoding: chunked
< Connection: keep-alive
< Vary: Accept-Encoding
< Vary: Accept-Encoding
< Access-Control-Allow-Methods: POST,GET,OPTIONS,DELETE
< Access-Control-Max-Age: 3600
< Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Access-Control-Allow-Origin,Accept,cache-control,if-modified-since
< Set-Cookie: JSESSIONID=F6921C9D1FADEA898E2BD5B9C935E4A8; Path=/; HttpOnly
<
* Connection #0 to host testweb.quanshi.com left intact
…… 响应body
* Closing connection 0
curl -x proxy.com:3128 http://www.landui.com
curl -o /dev/null -s -w "\\nhttp_code: %{http_code}\\ntime_namelookup: %{time_namelookup}s\\ntime_connect: %{time_connect}s\\ntime_starttransfer: %{time_starttransfer}s\\ntime_total: %{time_total}s\\n" "http://www.landui.com/umsapi/rs/users/64042216/organizations"
time_namelookup: %{time_namelookup}s\\n
time_connect: %{time_connect}s\\n
time_appconnect: %{time_appconnect}s\\n
time_redirect: %{time_redirect}s\\n
time_pretransfer: %{time_pretransfer}s\\n
time_starttransfer: %{time_starttransfer}s\\n
----------\\n
time_total: %{time_total}s\\n
curl -s -o /dev/null -w "@curl-format.txt" "http://www.landui.com/umsapi/rs/users/64042216/organizations"
time_namelookup: 0.002610s
time_connect: 0.022759s
time_appconnect: 0.000000s
time_redirect: 0.000000s
time_pretransfer: 0.022797s
time_starttransfer: 0.050744s
----------
time_total: 0.050963s
掌握 curl 的多样化指令,不仅能提升开发效率,更能深入理解 HTTP 协议细节。从基础的请求构造到高级的耗时分析,本文通过典型案例展现了 curl 的强大功能。在实际应用中,建议结合具体场景灵活组合参数,同时关注输出中的响应头、状态码及性能指标,以实现精准的问题定位与优化。期待这些实用技巧能成为工具箱中的利刃。
售前咨询
售后咨询
备案咨询
二维码
TOP