Curl post with multipart/form-data and JSON

巧了我就是萌 提交于 2020-01-02 02:59:09

问题


Is there a way to use curl to do a multipart/form-data post and specify that the data is application/json? It doesn't have to be curl.


回答1:


This is what I use, and it works fine

curl -v -H "Content-Type:multipart/form-data" 
        -F "someName={\"your\":\"json\"};type=application/json"

Note: I'm on Windows, hence the requirement for double quotes

Or

-F "someName=@someJsonFile.json;type=application/json"


来源:https://stackoverflow.com/questions/29563907/curl-post-with-multipart-form-data-and-json

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!