Is there a way to POST both binary data and form data using cURL? For instance:
"C:\Program Files\Curl\curl" -k --data-binary @"C:\datafile.xml" -d "key=somethinghere" -H "Content-Type:application/html" -X POST http:
Binary data works just fine, but I need a POST parameter as well as binary data.
Any ideas?
source
share