当前位置:   article > 正文

CURL命令常规用法和参数介绍_curl 传参

curl 传参

介绍

curl是底层使用 libcurl 库开发的命令行工具,是一个网络数据传输项目,它支持 DICT、FILE、FTP、FTPS、Gopher、HTTP、HTTPS、IMAP、IMAPS、LDAP、LDAPS、POP3、POP3S、RTMP、RTSP、SCP、SFTP、SMB、SMBS、SMTP、SMTPS、Telnet 与 TFTP 等协议,功能也比较丰富,今天笔者就一起来为大家解锁更多用法吧

常规用法

说明: http://api.com是url地址

Get请求

curl http://api.com
# 携带参数
curl http://api.com?name=参数
  • 1
  • 2
  • 3

Post请求

# 1.普通表单请求
# -d 后面跟参数
curl -X POST -d 'username=zhangs&pass=123456' http://api.com

# 2.JSON数据传参
# -H 设置头信息 -d 后面跟参数
curl -X POST http://api -H "Content-type: application/json"  -d'{"phone":"13111111111", "smsCode":"124567"}'

-X 指定请求类型
-H 指定请求头(若有多个请求头,可以 -H "XX:XX" -H "XX:XX" ......)
-d 参数
-F 指定文件
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

上传文件

curl -F "file=@a.txt" http://api.com
# a.txt是文件
  • 1
  • 2

下载文件

curl http://api.com -o a.txt
# a.txt是文件

--progress 显示进度信息
  • 1
  • 2
  • 3
  • 4

其他用法参数说明

  • -A:用户代理头 User-Agent
    eg: curl -A “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100” http://api.com

  • -b:使用cookie
    eg:curl -b “cookie=124” http://api.com
    eg:curl -b cookie.txt http://api.com

  • -c:存储服务器返回cookie
    eg:curl -c cookie_save.txt http://api.com

  • -d:参数
    eg:curl -X POST -d “username=zhangs&age=18” http://api.com

  • -e:设置http的Referer
    eg:curl -e ‘xxx’ http://api.com

  • -H :设置请求头
    eg:curl -H ‘xxx’ http://api.com

  • -i:打印印出服务器回应的 HTTP 标头
    eg:curl -i http://api.com
    -k:忽略ssl检测
    eg:curl -k https://api.com

  • -o:保存成文件
    eg:curl -o save.txt https://api.com

  • -u:设置服务认证需要的用户名密码
    eg:curl -u ‘username:password’ https://api.com

  • -x:设置网络代理

    eg:socks5代理
    curl -x socks5://username:password@127.0.0.1:8080 https://api.com
    eg:http代码
    curl -x username:password@127.0.0.1:8080 https://api.com

  • -X(大写):指定请求方式
    eg:curl -X POST https://api.com

更详细用法可参考 cookbooks

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/336174
推荐阅读
相关标签
  

闽ICP备14008679号