How Do I Do A Post Request?
How Do I Do A Post Request? Making a POST request The data send to the form is usually encoded in either multipart/form-data or application/x-www-form-urlencoded content type. When the -F option is used, curl sends the data using the multipart/form-data Content-Type. Another way to make a POST request is to use the -d option. How