本篇文章介绍cURL的基本使用方法

cURL基本使用教程

cURL是一个强大的命令行HTTP客户端,可以用来向目标服务器发送请求。

git Bash里面就集成了cURL,在git Bash中运行下面命令即可发起相应请求:

  • POST请求: curl -X POST -d '...' http://localhost:3000 (或者 curl -d '...' http://localhost:3000)
  • GET请求: curl -X GET http://localhost:3000 (或者curl http://localhost:3000)
  • DELETE请求: curl -X DELETE http://localhost:3000/索引号
  • PUT请求: curl -X PUT -d "..." http://localhost:3000/索引号

常用curl命令的参数:

-h 查看请求参数的含义
-v 显示请求的信息
-X 选项指定其它协议
-d 用来输入参数