我的win7貌似是自带的curl
curl的安装http://jingyan.baidu.com/article/a681b0dec4c67a3b1943467c.html
可以通过curl --help查看使用方法
发送POST请求
curl -d "send data ..." localhost:30000
-d代表发送POST请求;后面用双引号将要发送的内容括起来;接着是host:port,当然要有host:port对应的服务
2022-05-01 04:14:24
我的win7貌似是自带的curl
curl的安装http://jingyan.baidu.com/article/a681b0dec4c67a3b1943467c.html
可以通过curl --help查看使用方法
发送POST请求
curl -d "send data ..." localhost:30000
-d代表发送POST请求;后面用双引号将要发送的内容括起来;接着是host:port,当然要有host:port对应的服务