Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1782336
  • 博文数量: 297
  • 博客积分: 285
  • 博客等级: 二等列兵
  • 技术积分: 3006
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-06 22:04
个人简介

Linuxer, ex IBMer. GNU https://hmchzb19.github.io/

文章分类

全部博文(297)

文章存档

2020年(11)

2019年(15)

2018年(43)

2017年(79)

2016年(79)

2015年(58)

2014年(1)

2013年(8)

2012年(3)

分类: LINUX

2016-03-03 11:54:07

-X switch to :GET/POST or other HTTP methods

点击(此处)折叠或打开

  1. curl -X POST YOUR_URL
-v: show everything
-s: silent mode progress bar.

点击(此处)折叠或打开

  1. curl -v -X POST -d "fizz=buzz" http://requestb.in/tmy77qtm
-c: receive and store cookies from one request
-b: send the cookie jar

点击(此处)折叠或打开

  1. curl -c cookiejar.txt http://requestb.in/example
  2. curl -b cookiejar.txt http://requestb.in/example
-H: send full header
-d: -d @data.txt or -d "name=value" or --data "name=value": send data 

点击(此处)折叠或打开

  1. curl -H "Accept: application/json" http://localhost/hello.php                #will return json
  2. curl -H "Accept: text/html;q=0.5,application/json"   #return json as well 
  3. curl -v -X POST -H "Content-Type: application/json" '{"link": "","name": "notebook"}'        #same as upper
  4. curl -v -H "Content-Type:text/xml" /                        #will return xml
-L: (HTTP/HTTPS) If the server reports that the requested page has moved to a different location  (indicated  with  a  Location:
              header  and  a  3XX  response code), this option will make curl redo the request on the new place,就是能处理redirect,从github下载可以用curl -OkvL
-O: --remote-name: 远程文件名
-k: --insecure: allows curl to perform "insecure" SSL  connections  and  transfers

点击(此处)折叠或打开

  1. curl -OkvL 
-I, --head:  (HTTP/FTP/FILE)  Fetch  the  HTTP-header  only




阅读(1361) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~