curl概述
- curl 是一个命令行实用程序,允许用户
创建网络请求
- curl 在
Windows
、Linux
和Mac
上皆可使用
post请求
一个简单的 POST 请求
-X
:指定与远程服务器通信时将使用哪种 HTTP 请求方法
curl -X POST http://example.com
POST 请求传递数据文章来源:https://www.toymoban.com/news/detail-742845.html
-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=jason@example.com'
get请求
带参数请求,参数用&连接文章来源地址https://www.toymoban.com/news/detail-742845.html
curl http://127.0.0.1:8080/login?admin&passwd=12345678
到了这里,关于curl命令行发送post/get请求的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!