restclient.el
restclient.el copied to clipboard
multipart/form-data support (request)
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
}
?
:+1:
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...)