curl命令模拟HTTP GET/POST请求

在 Linux 操作系统上对后端程序进行测试的时候,需要进行模拟连接或者书写测试脚本

访问百度,通过GET方法请求

命令格式: curl protocol://address:port/url

1
curl http://www.baidu.com

获取天气数据,通过POST方法请求

命令格式:curl -d “args” “protocol://address:port/url”

1
curl -d "city=dongguan&appkey=8010132dcf54491a4eaa387f4db61774" "https://way.jd.com/he/freeweather"

这种方法是参数直接在header里面的

如果将输出指定到文件可以通过重定向进行操作

命令格式:curl -H “Content-Type:application/json” -X POST –data (json.data) URL

1
curl -H "Content-Type:application/json" -X POST --data '{"message": "sunshine"}' http://localhost:8000/

这种方法是json数据直接在body里面的

更多 curl 用法或参数可使用 man 命令查看,亦可访问 https://curl.haxx.se/

-------------本文结束感谢您的阅读-------------