美文网首页
curl 命令

curl 命令

作者: PC_Repair | 来源:发表于2020-11-08 10:59 被阅读0次

    curl 命令

    curl 是一个命令行工具,作用是发出网络请求,然后得到和提取数据,显示在“标准输出”(stdout)上面。功能介绍如下。

    一、查看源码

    $ curl www.sina.com
    
    // 如果要把网页保存下来,可以使用带 -o 参数,这就相当于 wget 命令
    $ curl -o [文件名称] 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>
    

    二、自动跳转

    有的网址是自动跳转的,使用 -L 参数,curl 就会跳转到新的网址。

    $ curl -L www.sina.com
    

    三、显示头信息

    -i 参数可以显示 http response 的头信息,连同网页代码一起。

    $ curl -i www.sina.com
    
    // -I 参数是只显示头信息
    $ curl -I www.sina.com
    
    HTTP/1.1 200 OK
    Server: Tengine
    Content-Type: text/html
    Content-Length: 23335
    Connection: keep-alive
    Date: Sun, 08 Nov 2020 02:22:46 GMT
    Last-Modified: Wed, 19 Aug 2020 20:24:44 GMT
    ETag: "5f3d8a8c-5b27"
    Expires: Sun, 08 Nov 2020 02:27:46 GMT
    Cache-Control: max-age=300
    Accept-Ranges: bytes
    Via: cache31.l2hk71[0,304-0,H], cache19.l2hk71[0,0], cache19.l2hk71[1,0], cache5.jp2[0,200-0,H], cache3.jp2[0,0]
    X-Swift-Error: orig response 5xx error
    Ali-Swift-Global-Savetime: 1597868694
    Age: 279
    X-Cache: HIT TCP_MEM_HIT dirn:2:362529081
    X-Swift-SaveTime: Sun, 08 Nov 2020 02:22:48 GMT
    X-Swift-CacheTime: 298
    X-Via-CDN: f=alicdn,s=cache3.jp2,c=115.206.159.117;
    Timing-Allow-Origin: *
    EagleId: 2f59420316048024456943739e
    
    <!DOCTYPE html>
    <!-- [ published at 2020-08-20 04:24:44 ] -->
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    ...
    

    四、显示通信过程

    -v 参数可以显示一次 http 通信的整个过程,包括端口连接和 http response 头信息。

    $ curl -v www.sina.com
    
    // 查看更详细的通信过程
    $ curl --trace output.txt www.sina.com
    // 或者
    $ curl --trace-ascii output.txt www.sina.com
    运行后,请打开output.txt文件查看。
    
    *   Trying 47.89.66.204...
    * TCP_NODELAY set
    * Connected to www.sina.com (47.89.66.204) port 80 (#0)
    > GET / HTTP/1.1
    > Host: www.sina.com
    > User-Agent: curl/7.64.1
    > Accept: */*
    > 
    < HTTP/1.1 200 OK
    < Server: Tengine
    < Content-Type: text/html
    < Content-Length: 23335
    < Connection: keep-alive
    < Date: Sun, 08 Nov 2020 02:27:48 GMT
    < Last-Modified: Wed, 19 Aug 2020 20:24:44 GMT
    < ETag: "5f3d8a8c-5b27"
    < Expires: Sun, 08 Nov 2020 02:32:48 GMT
    < Cache-Control: max-age=300
    < Accept-Ranges: bytes
    < Via: cache31.l2hk71[0,304-0,H], cache25.l2hk71[0,0], cache25.l2hk71[0,0], cache5.jp2[0,200-0,H], cache5.jp2[2,0]
    < X-Swift-Error: orig response 5xx error
    < Ali-Swift-Global-Savetime: 1597868694
    < Age: 139
    < X-Cache: HIT TCP_MEM_HIT dirn:2:362529081
    < X-Swift-SaveTime: Sun, 08 Nov 2020 02:28:18 GMT
    < X-Swift-CacheTime: 270
    < X-Via-CDN: f=alicdn,s=cache5.jp2,c=115.206.159.117;
    < Timing-Allow-Origin: *
    < EagleId: 2f59420516048026070141646e
    < 
    <!DOCTYPE html>
    <!-- [ published at 2020-08-20 04:24:44 ] -->
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    

    五、发送表单信息

    发送表单信息有 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 字段

    这个字段是用来表示客户端的设备信息。服务器有时会根据这个字段,针对不同设备,返回不同格式的网页,比如手机版和桌面版。

    iPhone 4 的 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 认证

    有些网域需要 HTTP 认证,这时 curl 需要用到 --user 参数。

    $ curl --user name:password example.com
    

    参考:

    相关文章

      网友评论

          本文标题:curl 命令

          本文链接:https://www.haomeiwen.com/subject/hpzcbktx.html