User-Agent

1
2
3
# -A
# --user-agent
curl -A myagent http://localhost

Show Response Header

1
2
3
# -i 显示Response的头信息,连同网页代码一起
# -I 只显示Response的头信息
curl -i http://localhost

显示通信过程

1
2
# -v,显示一次http通信的整个过程,包括端口连接和http request头信息
curl iv http://localhost

HTTP REST Request

1
2
3
# -X
curl -X POST http://localhost
curl -X PATCH http://localhost

GET

1
2
# -G -d -G是以GET方式访问,-d是请求数据
curl -G -d "name=xiaoming" http://localost

POST

1
2
3
4
# 表单
# -d 
curl -d "age=12&name=xiaoming" "http://localhost"
curl -X POST --data "age=12&name=xiaoming" http://localhost:5000/post/

referer

1
2
3
# -e
# --referer,这个地址是真实地址
curl --referer http://a.com http://localhost
1
2
--cookie
curl --cookie "name=xiaoming" http://localhost

add header

1
2
--header
curl --header "Contnet-Type:application/json" http://localhost:5000

Auto Redirect

1
2
# -L
curl -L http://localhost

Slient Mode

1
-s/--silent 不输出任何东西 #(除了响应体)

output to file

1
2
-o/--output
curl http://localhost -o aaa.html