使用 curl命令发送 http 请求

Linux

Linux 可能需要安装 curl ,使用包管理工具安装即可。

post 的 json 格式请求

curl -X POST -H 'ContentType:application/json' -H 'HeadOne:This is Head' -d '{"first": "object"}' http://127.0.0.1:8080

使用 wget

wget --header='ContentType:application/json' --header='HeadOne:This is Head' --post-data='{"first": "object"}' http://127.0.0.1:8080

Windows

Windows 下的 powershell 脚本自带 curl 命令,实际上是 Invoke-WebRequest 的别
名。

post 的 json 格式请求

Invoke-WebRequest  http://127.0.0.1:8080 -ContentType "application/json" -Method POST -Body '{"first": "object"}' -Headers @{"HeadOne" = "This is Head"}

你可能感兴趣的:(工具学习)