当前位置:   article > 正文

curl命令详解_curl -s

curl -s

curl 是一种命令行工具,作用是发出网络请求,然后获取数据,显示在"标准输出"(stdout)上面。它支持多种协议

一、查看网页源码

直接在 curl 命令后加上网址,就可以看到网页源码。以网址 www.sina.com为例(选择该网址,主要因为它的网页代码较短)。

  1. $ curl www.sina.com
  2. <html>
  3. <head><title>301 Moved Permanently</title></head>
  4. <body bgcolor="white">
  5. <center><h1>301 Moved Permanently</h1></center>
  6. <hr><center>nginx</center>
  7. </body>
  8. </html>

如果要把这个网页保存下来,可以使用 -o 参数:

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

二、自动跳转

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

$ curl -L www.sina.com

键入上面的命令,结果自动跳转为 www.sina.com.cn

三、显示头信息

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

 
  1. $ curl -i www.sina.com
  2. HTTP/1.1 301 Moved Permanently
  3. Server: nginx
  4. Date: Tue, 23 Aug 2016 08:30:16 GMT
  5. Content-Type: text/html
  6. Location: http://www.sina.com.cn/
  7. Expires: Tue, 23 Aug 2016 08:32:16 GMT
  8. Cache-Control: max-age=120
  9. Age: 102
  10. Content-Length: 178
  11. X-Cache: HIT from xd33-83.sina.com.cn
  12. <html>
  13. <head><title>301 Moved Permanently</title></head>
  14. <body bgcolor="white">
  15. <center><h1>301 Moved Permanently</h1></center>
  16. <hr><center>nginx</center>
  17. </body>
  18. </html>

四、显示通信过程

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

 
  1. $ curl -v www.sina.com
  2. * Rebuilt URL to: www.sina.com/
  3. * Hostname was NOT found in DNS cache
  4. * Trying 202.108.33.60...
  5. * Connected to www.sina.com (202.108.33.60) port 80 (#0)
  6. > GET / HTTP/1.1
  7. > User-Agent: curl/7.35.0
  8. > Host: www.sina.com
  9. > Accept: */*
  10. >
  11. < HTTP/1.1 301 Moved Permanently
  12. * Server nginx is not blacklisted
  13. < Server: nginx
  14. < Date: Tue, 23 Aug 2016 08:48:14 GMT
  15. < Content-Type: text/html
  16. < Location: http://www.sina.com.cn/
  17. < Expires: Tue, 23 Aug 2016 08:50:14 GMT
  18. < Cache-Control: max-age=120
  19. < Age: 40
  20. < Content-Length: 178
  21. < X-Cache: HIT from xd33-81.sina.com.cn
  22. <
  23. <html>
  24. <head><title>301 Moved Permanently</title></head>
  25. <body bgcolor="white">
  26. <center><h1>301 Moved Permanently</h1></center>
  27. <hr><center>nginx</center>
  28. </body>
  29. </html>
  30. * Connection #0 to host www.sina.com left intact

如果觉得上面的信息还不够,那么下面的命令可以查看更详细的通信过程。

$ 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 或者 -d 参数。

$ 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 参数可以支持其他动词。

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

七、User Agent字段

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

Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36

curl 可以这样模拟:

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

八、cookie

使用 --cookie 参数,可以让 curl 发送 cookie。

$ curl --cookie "name=xxx" www.example.com

至于具体的 cookie 的值,可以从 http response 头信息的 Set-Cookie 字段中得到

九、增加头信息--header 

有时需要在 http request 之中,自行增加一个头信息。--header 参数就可以起到这个作用。

$ curl --header "Content-Type:application/json" http://example.com

十、HTTP认证

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

$ curl --user name:password example.com
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/198430
推荐阅读
相关标签