CURL 使用詳解

CURL

Curl 的一些用法詳解,Commad Line URL

curl 是一種命令行工具,作用是發出網絡請求,然後得到和提取數據,顯示在“標準輸出”(stdout)上面,支持多種協議。

一、查看網頁源代碼

直接在curl命令後加上網址,可以看到網頁源碼。

$ curl www.sina.com
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  <html><head>
  <title>301 Moved Permanently</title>
  </head><body>
  <h1>Moved Permanently</h1>
  <p>The document has moved <a href="http://www.sina.com.cn/">here</a>.</p>
  </body></html>

如果要把這個文件保存下來,可以使用"-o"參數,相當於使用wget命令。

$ curl -o [文件名] www.sina.com

二、**自動跳轉 **

有的網址是自動跳轉的。使用-L參數,curl就會跳轉到新的網址。

$ curl -L www.sina.com

三、顯示頭信息

‘-i’,參數可以顯示 http response的頭信息,連同網頁代碼一起。

$ curl -i www.sina.com
  HTTP/1.0 301 Moved Permanently
  Date: Sat, 03 Sep 2011 23:44:10 GMT
  Server: Apache/2.0.54 (Unix)
  Location: http://www.sina.com.cn/
  Cache-Control: max-age=3600
  Expires: Sun, 04 Sep 2011 00:44:10 GMT
  Vary: Accept-Encoding
  Content-Length: 231
  Content-Type: text/html; charset=iso-8859-1
  Age: 3239
  X-Cache: HIT from sh201-9.sina.com.cn
  Connection: close
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  <html><head>
  <title>301 Moved Permanently</title>
  </head><body>
  <h1>Moved Permanently</h1>
  <p>The document has moved <a href="http://www.sina.com.cn/">here</a>.</p>
  </body></html>

'-I‘ 只顯示http response的頭信息

四、顯示通信過程

'-v’參數可以顯示一次http通信的整個過程,包括端口連接和http requests頭信息

 $ curl -v www.sina.com
  * About to connect() to www.sina.com port 80 (#0)
  * Trying 61.172.201.195... connected
  * Connected to www.sina.com (61.172.201.195) port 80 (#0)
  > GET / HTTP/1.1
  > User-Agent: curl/7.21.3 (i686-pc-linux-gnu) libcurl/7.21.3 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.18
  > Host: www.sina.com
  > Accept: */*
  > 
  * HTTP 1.0, assume close after body
  < HTTP/1.0 301 Moved Permanently
  < Date: Sun, 04 Sep 2011 00:42:39 GMT
  < Server: Apache/2.0.54 (Unix)
  < Location: http://www.sina.com.cn/
  < Cache-Control: max-age=3600
  < Expires: Sun, 04 Sep 2011 01:42:39 GMT
  < Vary: Accept-Encoding
  < Content-Length: 231
  < Content-Type: text/html; charset=iso-8859-1
  < X-Cache: MISS from sh201-19.sina.com.cn
  < Connection: close
  < 
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  <html><head>
  <title>301 Moved Permanently</title>
  </head><body>
  <h1>Moved Permanently</h1>
  <p>The document has moved <a href="http://www.sina.com.cn/">here</a>.</p>
  </body></html>
  * Closing connection #0
$ curl --trace output.txt www.sina.com

五、發送表單信息

發送表單信息有GET和POST兩種方法。GET方法相對簡單,只要把數據附在網址後面就行。

$ curl example.com/form.cgi?data=xxx

POST方法必須把數據和網址分開,curl就要用到–data參數。可縮寫成-d

$ curl -X POST --data "data=xxx" example.com/form.cgi     //--data可以寫成-d

如果要輸出到指定文件可以進行重定向操作(-H 指定頭文件)

$ curl -H "Content-Type:application/json" -X POST --data '{"message": "sunshine"}' http://localhost:8000/

六、HTTP動詞

curl默認的Http動詞是GET,使用‘-X’參數可以支持其他動詞

$ curl -X POST www.example.com
$ curl -X DELETE www.example.com

七、文件上傳

假定文件上傳的表單是下面這樣的;

  <form method="POST" enctype='multipart/form-data' action="upload.cgi">
    <input type=file name=upload>
    <input type=submit name=press value="OK">
  </form>

八、Referer字段

有時候你需要在http request頭信息中,提供一個referer字段,表示你是從哪裏跳轉過來的

 $ curl --referer http://www.example.com http://www.example.com

九、User Agen字段

這個字段是用來表示客戶端的設備信息,服務器有時會根據這個字段,針對不同設備,返回不同格式的網頁,比如手機版和桌面版。

iPhone4的User Agen是

  Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_0 like Mac OS X; en-us) AppleWebKit/532.9 (KHTML, like Gecko) Version/4.0.5 Mobile/8A293 Safari/6531.22.7

curl可以這樣模擬:

$ curl --user-agent "[User Agent]" [URL]

十、Cookie

使用--cookie參數,可以讓curl發送cookie。

$ curl --cookie "name=xxx" www.example.com
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章