curl 条记

打印 上一主题 下一主题

主题 936|帖子 936|积分 2818

测试工具

可以用nc快速开启一个端口监听, 用来检查curl请求
  1. # 命令格式 nc -l -p [port], 例如
  2. nc -l -p 8080
复制代码
GET 请求
  1. curl [URL]
  2. # 或者指定请求方式
  3. cURL -X GET [URL]
复制代码
例如
  1. curl http://127.0.0.1:8768/app/bootup/ping
  2. curl -X GET http://127.0.0.1:8768/app/bootup/ping
复制代码
GET请求的参数一般放在链接里, 例如
  1. curl -X GET http://127.0.0.1:8768/app/data_import/get?id=1
复制代码
假如要像POST那样放到 -d 参数中, 则需要加上 -G 参数
-G, --get           Put the post data in the URL and use GET
例如
  1. curl -X GET -G -d 'id=1' http://127.0.0.1:8768/app/data_import/get
复制代码
POST 请求

用 -d 指定参数, 格式默认使用的是 Content-Type: application/x-www-form-urlencoded;charset=UTF-8
  1. cURL -X POST -d "k=v&k2=v2"
复制代码
假如需要使用 json, 需要用 -H 指定 Content-Type: application/json
  1. curl -X POST -H "Content-Type: application/json" -d '{}' [URL]
复制代码
例如
  1. curl -X POST -H "Content-Type: application/json" -d '{"page":2, "limit":2}' http://127.0.0.1:8768/app/static_file/list
复制代码
上传文件

Multipart 文件上传
  1. # 格式, -F可以多个
  2. curl -F key1=value1 -F upload=@localfilename URL
复制代码
例如
  1. curl -v -F file=@"/home/milton/Downloads/File_28_7.zip" http://127.0.0.1/app/static_file/upload
  2. curl -XPOST -F "k=v" -F "file=@1112002.png" http://localhost:8080/home
复制代码
假如要上传多个文件, 参数名要唯一, 大概改成数组参数名, 例如
  1. curl -F "f1=@file1.gif" -F "f2=@file2.gif"  http://localhost:8080/upload
复制代码
大概用数组参数名, 例如
  1. curl -F "file[]=@file1.gif" -F "file[]=@file2.gif"  http://localhost/upload
复制代码
全局参数

带错误输出的安静模式 -sS
  1.        -s, --silent
  2.               Silent  or  quiet  mode. Don't show progress meter or error mes‐
  3.               sages.  Makes Curl mute.
  4.        -S, --show-error
  5.               When used with -s it makes curl show  an  error  message  if  it
  6.               fails.
复制代码
只获取响应头, 用于只需要判定200的场景
  1.        -I, --head
  2.               (HTTP/FTP/FILE) Fetch the HTTP-header only! HTTP-servers feature
  3.               the  command  HEAD which this uses to get nothing but the header
  4.               of a document. When used on an FTP or FILE file,  curl  displays
  5.               the file size and last modification time only.
复制代码
体现完整请求和响应 -v

例如
  1. curl -v -F file=@"/home/milton/Downloads/File_28_7.zip" http://127.0.0.1:8768/app/static_file/upload
  2. *   Trying 127.0.0.1:8768...
  3. * TCP_NODELAY set
  4. * Connected to 127.0.0.1 (127.0.0.1) port 8768 (#0)
  5. > POST /app/static_file/upload HTTP/1.1
  6. > Host: 127.0.0.1:8768
  7. > User-Agent: curl/7.68.0
  8. > Accept: */*
  9. > Content-Length: 291760
  10. > Content-Type: multipart/form-data; boundary=------------------------6e7d753a255e8137
  11. > Expect: 100-continue
  12. >
  13. * Mark bundle as not supporting multiuse
  14. < HTTP/1.1 100
  15. * We are completely uploaded and fine
  16. * Mark bundle as not supporting multiuse
  17. < HTTP/1.1 200
  18. < Vary: Origin
  19. < Vary: Access-Control-Request-Method
  20. < Vary: Access-Control-Request-Headers
  21. < Content-Type: application/json
  22. < Transfer-Encoding: chunked
  23. < Date: Thu, 26 Jan 2023 13:16:50 GMT
  24. <
  25. * Connection #0 to host 127.0.0.1 left intact
  26. {"code":0,"message":"success","data":1}
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

来自云龙湖轮廓分明的月亮

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表