How to convert curl command to http request? How to convert curl command to http request? curl curl

How to convert curl command to http request?


As you can see from the curl man page, -F is explained as

This lets curl emulate a filled-in form in which a user has pressed the submit button. This causes curl to POST data using the Content-Type multipart/form-data according to RFC2388.

There is a ton of answers about this special request body encoding.