關於curl網站運維與開發的那些事
curl網站開發指南
常見引數:
-A/--user-agent <string> 設定使用者代理髮送給伺服器 -b/--cookie <name=string/file> cookie字串或檔案讀取位置 -c/--cookie-jar <file> 操作結束後把cookie寫入到這個檔案中 -C/--continue-at <offset> 斷點續轉 -D/--dump-header <file> 把header資訊寫入到該檔案中 -e/--referer 來源網址 -f/--fail 連線失敗時不顯示http錯誤 -o/--output 把輸出寫到該檔案中 -O/--remote-name 把輸出寫到該檔案中,保留遠端檔案的檔名 -r/--range <range> 檢索來自HTTP/1.1或FTP伺服器位元組範圍 -s/--silent 靜音模式。不輸出任何東西 -T/--upload-file <file> 上傳檔案 -u/--user <user[:password]> 設定伺服器的使用者和密碼 -w/--write-out [format] 什麼輸出完成後 -x/--proxy <host[:port]> 在給定的埠上使用HTTP代理 -#/--progress-bar 進度條顯示當前的傳送狀態
curl是一種命令列工具,作用是發出網路請求,然後得到和提取資料,顯示在”標準輸出”(stdout)上面。
它支援多種協議,下面舉例講解如何將它用於網站開發。
一、檢視網頁原始碼
直接在curl命令後加上網址,就可以看到網頁原始碼。我們以網址www.sina.com為例(選擇該網址,主要因為它的網頁程式碼較短):
$ 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
鍵入上面的命令,結果就自動跳轉為www.sina.com.cn。
三、顯示頭資訊
-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 request頭資訊。
$ 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
或者
$ curl --trace-ascii output.txt www.sina.com
執行後,請開啟output.txt檔案檢視。
五、傳送表單資訊
傳送表單資訊有GET和POST兩種方法。GET方法相對簡單,只要把資料附在網址後面就行。
$ curl example.com/form.cgi?data=xxx
POST方法必須把資料和網址分開,curl就要用到–data引數。
$ curl -X POST --data "data=xxx" example.com/form.cgi
如果你的資料沒有經過表單編碼,還可以讓curl為你編碼,引數是--data-urlencode
。
$ curl -X POST--data-urlencode "date=April 1" example.com/form.cgi
六、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>
你可以用curl這樣上傳檔案:
$ curl --form upload=@localfilename --form press=OK [URL]
八、Referer欄位
有時你需要在http request頭資訊中,提供一個referer欄位,表示你是從哪裡跳轉過來的。
$ curl --referer http://www.example.com http://www.example.com
九、User Agent欄位
這個欄位是用來表示客戶端的裝置資訊。伺服器有時會根據這個欄位,針對不同裝置,返回不同格式的網頁,比如手機版和桌面版。
iPhone4的User Agent是
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
至於具體的cookie的值,可以從http response頭資訊的Set-Cookie
欄位中得到。
-c cookie-file
可以儲存伺服器返回的cookie到檔案,-b cookie-file
可以使用這個檔案作為cookie資訊,進行後續的請求。
$ curl -c cookies http://example.com
$ curl -b cookies http://example.com
十一、增加頭資訊
有時需要在http request之中,自行增加一個頭資訊。--header
引數就可以起到這個作用。
$ curl --header "Content-Type:application/json" http://example.com
十二、HTTP認證
有些網域需要HTTP認證,這時curl需要用到--user
引數。
$ curl --user name:password example.com