.bat文件实现一个简单的http请求工具(支持get和post请求)
Posted 明金同学
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.bat文件实现一个简单的http请求工具(支持get和post请求)相关的知识,希望对你有一定的参考价值。
利用win10支持curl命令的原理,构造参数发送请求
代码:
@echo off
:again
set /p web=please input web url:
set /p method=please input method:
if %method%==PUT (goto :TransferData) else (if %method%==POST (goto :TransferData) else (curl -v -X %method% -H "Content-Type: text/html; charset=UTF-8" %web%))
goto :again
pause
:TransferData
set /p data=please input data:
curl -v -X %method% -H "Content-Type: text/html; charset=UTF-8" -d %data% %web%
goto :again
成品运行截图:
以上是关于.bat文件实现一个简单的http请求工具(支持get和post请求)的主要内容,如果未能解决你的问题,请参考以下文章