Linux command line tool for uploading files over HTTP as multipart/form-data?

25

11

I can see that wget has a --post-file option, but the manpage says

Wget does not currently support multipart/form-data for transmitting POST data; only application/x-www-form-urlencoded. Only one of --post-data and --post-file should be specified.

Is there a similar way for uploading files in multipart/form-data?

kdt

Posted 2009-12-21T11:41:35.773

Reputation: 9 203

Answers

31

Use curl:

curl -F "file=@localfile;filename=nameinpost" url.com

Tobu

Posted 2009-12-21T11:41:35.773

Reputation: 2 584

17

It is possible to do this with wget only. At least with version 1.13.4 and maybe others. The --post-file option allows you to specify a file to send, so long as the postdata file is constructed properly.

I have also tested this with binary files and it works as expected. You do NOT need to base64 encode the file, but you do need to ensure your file does not contain the boundary.

The minimum command required to make this work would be:

wget --header="Content-type: multipart/form-data boundary=FILEUPLOAD" --post-file postfile http://domain/uploadform

and the postdata file would need to contain something like:

--FILEUPLOAD
Content-Disposition: form-data; name="comment"

I love uploading files!

--FILEUPLOAD
Content-Disposition: form-data; name="uploadFile"; filename="myfile.bin"; 
Content-Type: application/octet-stream
Media Type: application/octet-stream

Give me some automated file upload action!

--FILEUPLOAD--

A number of details are important here:

  1. Lines in the post data file are terminated with \r\n. The only exception is data inside the file context.
  2. Every BOUNDARY attribute in the postdata must match the BOUNDARY value in the call to wget. (FILEUPLOAD in the example)
  3. All boundaries are prefixed with two hyphens "--" and terminated with \r\n
  4. The last boundary is suffixed with two extra hyphens "--" and terminated with \r\n
  5. Each piece of data, file content or parameter value, is surrounded by an empty line "\r\n"

I thought this might help someone since some controlled environments have wget but not curl.

tu-Reinstate Monica-dor duh

Posted 2009-12-21T11:41:35.773

Reputation: 738

2A semicolon is missing. It caused problems with python tornado --header="Content-type: multipart/form-data; boundary=FILEUPLOAD" – FlappySocks – 2017-09-27T01:50:18.847

I could not get wget to work with a binary file. I created the text portion of the post data file, saved, used cat pic.jpg >> postdata, loaded in Notepad++, and appended the last boundary + '--' + EOL. W3C Reference

– Chloe – 2013-04-01T06:37:47.227

@Chloe, I had to revisit this for another project, and this time binary files were needed and found it worked as expected. I constructed a simple php file upload page and then did it through a browser to first get the file size and then compared it to the result from using wget. I'd suggest you do the same since a stray newline can cause the whole process to fail. – tu-Reinstate Monica-dor duh – 2013-05-28T03:34:42.560