概述
Linux下命令行cURL基本使用
- 1. 获取页面内容
- 2.显示 HTTP 头
- 3. 将链接保存到文件
- 4. 使用 -H 自定义 header
- 5. 使用 -c 保存 Cookie
- 6.使用 -b 读取 Cookie
- 7.使用 -d 发送 POST 请求
- 8.发送POST请求传输json数据
语法: # curl [option] [url]
1. 获取页面内容
当我们不加任何选项使用 curl 时,默认会发送 GET 请求来获取链接内容到标准输出。
curl http://www.codebelief.com
2.显示 HTTP 头
同时显示 HTTP 头和文件内容,使用 -i 选项:
curl -i http://..
D:SVN>curl -i http://www.baidu.com
HTTP/1.1 200 OK
Accept-Ranges: bytes
Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
Connection: keep-alive
Content-Length: 2381
Content-Type: text/html
Date: Tue, 18 Jan 2022 05:51:40 GMT
Etag: "588604f8-94d"
Last-Modified: Mon, 23 Jan 2017 13:28:24 GMT
Pragma: no-cache
Server: bfe/1.0.8.18
Set-Cookie: BDORZ=27315; max-age=86400; domain=.baidu.com; path=/
<!DOCTYPE html>
...
如果我们只想要显示 HTTP 头,而不显示文件内容,可以使用 -I 选项:
curl -I http://..
D:SVN>curl -I http://www.baidu.com
HTTP/1.1 200 OK
Accept-Ranges: bytes
Cache-Control: private, no-cache, no-store, proxy-revalidate, no-transform
Connection: keep-alive
Content-Length: 277
Content-Type: text/html
Date: Tue, 18 Jan 2022 06:16:00 GMT
Etag: "575e1f7c-115"
Last-Modified: Mon, 13 Jun 2016 02:50:36 GMT
Pragma: no-cache
Server: bfe/1.0.8.18
3. 将链接保存到文件
我们可以使用 > 符号将输出重定向到本地文件中。
curl http://.. > 本地文件名
结果会被保存到命令行中提供的文件名
curl -o FileName http://..
-o(小写的 o):结果会被保存到命令行中提供的文件名
D:SVN>curl -o www.html http://www.baidu.com
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2381 100 2381 0 0 2381 0 0:00:01 --:--:-- 0:00:01 50659
curl -o http://../name
-O(大写的 O):URL 中的文件名会被用作保存输出的文件名
4. 使用 -H 自定义 header
当我们需要传递特定的 header 的时候,可以仿照以下命令来写:
curl -H "Referer: www.example.com" -H "User-Agent: Custom-User-Agent" http://www.baidu.com
可以看到,当我们使用 -H 来自定义 User-Agent 时,需要使用 “User-Agent: xxx” 的格式。
我们能够直接在 header 中传递 Cookie,格式与上面的例子一样:
curl -H "Cookie: JSESSIONID=D0112A5063D938586B659EF8F939BE24" http://www.example.com
5. 使用 -c 保存 Cookie
当我们使用 cURL 访问页面的时候,默认是不会保存 Cookie 的。有些情况下我们希望保存 Cookie 以便下次访问时使用。例如登陆了某个网站,我们希望再次访问该网站时保持登陆的状态,这时就可以现将登陆时的 Cookie 保存起来,下次访问时再读取。
-c 后面跟上要保存的文件名
curl -c "cookie-example" http://www.example.com
6.使用 -b 读取 Cookie
前面讲到了使用 -H 来发送 Cookie 的方法,这种方式是直接将 Cookie 字符串写在命令中。如果使用 -b 来自定义 Cookie,命令如下:
curl -b "JSESSIONID=D0112A5063D938586B659EF8F939BE24" http://www.example.com
如果要从文件中读取 Cookie,-H 就无能为力了,此时可以使用 -b 来达到这一目的:
curl -b "cookie-example" http://www.example.com
7.使用 -d 发送 POST 请求
我们以登陆网页为例来进行说明使用 cURL 发送 POST 请求的方法。假设有一个登录页面 www.example.com/login,只需要提交用户名和密码便可登录。我们可以使用 cURL 来完成这一 POST 请求,-d 用于指定发送的数据,-X 用于指定发送数据的方式:
curl -d "userName=tom&passwd=123456" -X POST http://www.example.com/login
在使用 -d 的情况下,如果省略 -X,则默认为 POST 方式:
curl -d "userName=tom&passwd=123456" http://www.example.com/login
强制使用 GET 方式
或者使用 -G 选项:
curl -d "somedata" -X GET http://www.example.com/api
从文件中读取 data
curl -d "@data.txt" http://www.example.com/login
8.发送POST请求传输json数据
curl -H "Content-type:application/json" -d '{"":""}' "url"
最后
以上就是懦弱煎饼为你收集整理的Linux下命令行cURL基本使用的全部内容,希望文章能够帮你解决Linux下命令行cURL基本使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复