cURL将2个文件作为参数发布

时间:2018-03-15 13:05:09

标签: curl

我需要卷曲到一个终点,这是一个帖子,我无法做的是发送2个文件作为参数。我能做的就是发送正文中的文件。我是这样做的:

curl -i -X POST -H "Content-Type: text/html" -F "data=@index.html" -F "data2=@test-result.xml" http://localhost:8280/reports

关于如何将文件内容作为参数发送的任何指针?

1 个答案:

答案 0 :(得分:1)

试试这个:

curl -F 'data=@/path/to/index.html' -F 'data2=@/path/to/test-result.xml' http://localhost:8280/report