curl -X POST -H "Content-Type:text/xml;charset=UTF-8" -d @test.xml https://url:port/api
参数说明:
GET
@
表示把一个文件的内容作为请求参数发送出去。curl -X POST -F "file=@/home/user/test.jpg" https://url:port/api
参数说明:
GET
multipart/form-data
的表单数据上传
curl -u <username>:<password> --ftp-create-dirs -T <local_file> ftp://<ftp_server>/<remote_path>/<remote_file>
参数说明:
下载
curl -u <username>:<password> -o <local_file> ftp://<ftp_server>/<remote_file>
参数说明: