We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Linked to global issue #30
ref
To send multipart/form-data use Net::HTTPHeader#set_form: req = Net::HTTP::Post.new(uri) req.set_form([['upload', File.open('foo.bar')]], 'multipart/form-data')
To send multipart/form-data use Net::HTTPHeader#set_form:
req = Net::HTTP::Post.new(uri) req.set_form([['upload', File.open('foo.bar')]], 'multipart/form-data')
set_form
So requiring a external gem is not longer required.
<#if util.atLeastOneMultipart(requests)> require "net/http/post/multipart" # Psst! It require an additional gem : gem install multipart-post </#if>
But the rest of the code need to be updated the standard library syntax instead of the external gem DSL.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Linked to global issue #30
ref
set_form
So requiring a external gem is not longer required.
But the rest of the code need to be updated the standard library syntax instead of the external gem DSL.
The text was updated successfully, but these errors were encountered: