curl 模拟 http发送get/post请求
Posted slovey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了curl 模拟 http发送get/post请求相关的知识,希望对你有一定的参考价值。
参考https://blog.csdn.net/u012340794/article/details/71440604
使用curl 发送GET请求
curl http://localhost:8081/login?admin&asp;password=123456
使用curl 发送POST请求
curl -d "admin&asp;password=123456" http://localhost:8081/login
使用curl 发送JSON字符串的POST请求
这种方法是参数直接在header里面的,如需将输出指定到文件可以通过重定向进行操作.
curl -H "Content-Type:application/json" -X POST -d ‘json data‘ URL
例如: curl -H "Content-Type:application/json" -X POST -d ‘{"username": "0","password": "10"}‘ http://localhost:8081/login
以上是关于curl 模拟 http发送get/post请求的主要内容,如果未能解决你的问题,请参考以下文章