curl命令行发送post/get请求

文章目录

  • curl概述
  • post请求
  • get请求

curl概述

  • curl 是一个命令行实用程序,允许用户创建网络请求
  • curl 在WindowsLinuxMac 上皆可使用

post请求

一个简单的 POST 请求

  • -X:指定与远程服务器通信时将使用哪种 HTTP 请求方法
curl -X POST http://example.com

POST 请求传递数据

  • -d:设置请求参数(拼接参数或json)
curl -X POST http://example.com -d "firstname=John&lastname=Andrew" 
  • -H:设置request里的header
curl -X POST http://example.com -d '{"hello": "world"}' -H 'Content-Type: application/json'
  • -F:模拟HTTP表单数据提交 multipart POST
  • 使用该-F选项时,curl使用的默认Content-Type是“multipart/form-data”
curl -X POST http://example.com -F 'name=Jason' -F '[email protected]'

get请求

带参数请求,参数用&连接

curl http://127.0.0.1:8080/login?admin&passwd=12345678

你可能感兴趣的:(linux,linux)