restclient.el icon indicating copy to clipboard operation
restclient.el copied to clipboard

multipart/form-data support (request)

Open emanresusername opened this issue 8 years ago • 2 comments

basically hoping for the equivalent of the following in curl

curl --form "name=Form Man" --form "title=Dr." --form "picture=@/path/to/my/picture.png" --form "resume=@/path/to/my/resume.pdf" http://httpbin/org/post

maybe something like

POST http://httpbin.org/post
Content-Type: multipart/form-data
Form: {
name=Form Man
title=Dr.
picture=@/path/to/my/picture.png
resume=@/path/to/my/resume.pdf
}

?

emanresusername avatar Dec 04 '16 23:12 emanresusername

:+1:

jesuspc avatar Apr 05 '17 13:04 jesuspc

A feature like this, would be really, really, really, neat!

(Said by someone right now trying to push a multipart/form-data through, and not succeeding...)

steinarb avatar Feb 16 '22 09:02 steinarb