How to use Chrome's "Copy as cURL" for multipart/form-data post requests on Windows -


i developing module web application. trigger module need submit data server. simple forms "copy curl" developer tools works fine (using curl msys[git]), post requests multipart/form-data copied string neither usable in windows shell (cmd) nor bash (form msys); copied text similar to

 curl "http://myserver.local" -h "origin: http://wiki.selfhtml.org" -h "accept-encoding: gzip, deflate" -h "accept-language: de-de,de;q=0.8,en-us;q=0.6,en;q=0.4" -h "user-agent: mozilla/5.0 (windows nt 6.1; wow64) applewebkit/537.36 (khtml, gecko) chrome/43.0.2357.130 safari/537.36" -h "content-type: multipart/form-data; boundary=----webkitformboundaryntxdlwbyxavwcimu" -h "accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" -h "cache-control: max-age=0" -h "referer: http://wiki.selfhtml.org/extensions/selfhtml/frickl.php/beispiel:html_form-element1.html" -h "connection: keep-alive" --data-binary "------webkitformboundaryntxdlwbyxavwcimu"^ "content-disposition: form-data; name=""area"""^  "multi"^ "line"^ "------webkitformboundaryntxdlwbyxavwcimu--"^ "" --compressed 

is there way, use or convert usable?


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -