http还在用postman?curl它不香吗
Posted 码农小麦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http还在用postman?curl它不香吗相关的知识,希望对你有一定的参考价值。
curl是什么?c可以看作是client,url(Uniform Resource Locator)是统一资源定位符。curl可以为指定的url执行网络传输,在shell和脚本中它是如此便捷、强大、可靠。
curl支持n多协议(ftp、smtp等等),本文只讨论有关http基于命令行的相关话题,使用curl完全可以轻而易举地取代postman之流的图形界面工具。下面看下使用curl发起http请求。
curl http://localhost:8080/demo
curl -v http://localhost:8080/demo
curl -G -d "hello" -v http://1ocalhost:8080/demo
curl -I http://localhost:8080/demo
curl -i http://localhost:8080/demo
curl -u 'admin:admin' http://localhost:9002/actuator
curl http:// admin:admin@ localhost:9002/actuator
curl -u 'admin' http://localhost:9002/actuator
curl -u 'admin:admin' -c cookie.txt http://localhost:9002/actuator
curl -b cookie.txt http://localhost:9002/actuator
curl -d "{'name':'star','age':20}" -H "Content-type:application/json" http://localhost:8080/demo/post
curl -d @post_data -H "Content-type:application/json" http://localhost:8080/demo/post
curl -F 'fileName=@curl.png' http://localhost:8080/demo/file
curl --data-urlencode 'name=码农小麦' -v http://localhost:8080/demo/urlencode
curl -d 'name=码农小麦' -d 'content=欢迎来撩' -v http://localhost:8080/demo/post
curl -d 'name=码农小麦&content=欢迎来撩' -v http://localhost:8080/demo/post
【觉得有用 end 点个关注】
以上是关于http还在用postman?curl它不香吗的主要内容,如果未能解决你的问题,请参考以下文章