HTTP.Form can take a dictionary of key-value pairs and produce an encoded form string for making POST requests with "Content-Type", "application/x-www-form-urlencoded"
. How can I take such a request in my server and parse
You can use the HTTP.parse_multipart_form(req::Request)::Vector{Multipart}
function.
1 Like
I think I tried that, but I got nothing
…
Open an issue with a broken example then.