curl -h 来查看请求参数的含义 
-v 显示请求的信息 
-X 选项指定其它协议

 

get:

curl -v https://proxy.mimvp.com/girls/age/18

 

post:

curl -v https://proxy.mimvp.com/girls -d 'age=18&cupSize=D'
 curl -v -X POST https://proxy.mimvp.com/girls -d 'age=18&cupSize=D'

 

put:

curl -v -X PUT -d "age=18&cupSize=D" https://proxy.mimvp.com/girls/3

 

delete:

curl -v -X DELETE https://proxy.mimvp.com/girls/3

 

 

参考推荐

curl 查看 HTTP Header 响应头信息

Linux curl 命令模拟 POST/GET 请求  (推荐

shell命令curl 检测代理是否可用          (推荐

Python通过get, post请求方式

PHP 模拟POST提交2种方法                (推荐

PHP 异步后台处理

米扑代理使用示例

Linux 命令大全 curl 命令