1 、不带有任何参数时,curl 就是发出 GET 请求
curl www.baidu.com 发出 GET 请求,服务器返回的内容会在命令行输出
2、发送表单数据
curl -F "clientType=1" -F "version=1" http://xxx.xxx.com/api/activity/list
3、設置cookie
curl -b "domain=baidu.com" http://baidu.com
4、查看http头
curl -I http://baidu.com