-F,以multipart/form-data的方式发送POST请求
curl -F "key=value" -F "filename=@file" http://xxx/upload
-H, 添加Header内容
curl -H "Content-Type: application/json" -X POST -d '{"username":"xyz","password":"xyz"}' http://xxx/api
-d, 以application/x-www-url-encoded格式上传参数
curl -d "action=dosth" -d "name=xxx" http://xxx/api
-o, 输出到文件,可以指定下载文件
curl http://xxx/xxx -o file
近期评论