问题
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