How can I rewrite the following CURL command, so that it doesn\'t use the -F option, but still generates the exact same HTTP request? i.e. so that it passes th
-F
This is for multipart/form-data request method. for uploading a file add --form filename="@path/image.jpg;type=image/jpeg"
curl --form key="value" --form key="value" http://localhost:3000/test