pramsky
Hello!
I have the following curl request (confirmed working)
curl --request POST \
--url https://example.net \
--header 'Authorization: Bearer asupersecrettokentoauthenticatewith' \
--header 'Content-Type: multipart/form-data' \
--form orgid=1234567890987654321 \
--form from=5555555555 \
--form to=1234 \
--form 'file=@"/tmp/foo.png"'
I created the multipart payload and posted as as
filepath = "/tmp/foo.png"
orgid = "1234567890987654321"
from = "5555555555"
to = "1234"
form = [{:file, filepath}, {"from", from}, {"to", to}, {"orgid", orgid}]
headers = [
"Content-Type": "multipart/form-data",
"Authorization": "Bearer asupersecrettokentoauthenticatewith"
]
options = []
HTTPoison.post("https://example.net", {:multipart, form}, headers, options)
The HTTPoison request does not seem to work. Am I missing something in the translation ?
Thanks
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
pdgonzalez872
what’s the error you are getting @pramsky ?
pramsky
The vendor endpoint returns an error 400.
To debug, I did the 2 posts to pipedream and see there is a difference in the content type used for the form fields.
The curl request
Httpoison request
al2o3cr
Can you extract the actual contents of the two requests?
pramsky
Here are the responses when sent to httpbin.org/anything. Converted to elixir map.
This is the json response from the curl request
This is the response from HTTPoison
al2o3cr
I don’t think comparing what comes out of HTTPBin’s parser is sufficient to see the issue - I only see two differences:
boundarystring in theContent-Type; that’s intentionally random and so not relevantAcceptheader from Curl is not present in the otherIt’s worth a try to add that header; some HTTP implementations are more selective about the headers they expect.
Otherwise you’ll need the actual bytes being sent in the two requests - there’s evidently some difference, since Pipedream shows a slightly different shape, despite HTTPBin seeing the same values.
pramsky
I was able to get the post text fields to show up in pipe dream as text by adding [“Content-Type”: “text/plain”] to the payload tuple.
It still does not work on the vendor site. I reached out to the vendor and he suggested it may be the boundary that is causing the issue. I have the logs of the POST request from the vendor.
The working request via Insomnia REST Client
The non working HTTPoison request
al2o3cr
The boundary from HTTPoison meets the requirements of RFC2046 - it’s more than 1 and less than 70 characters from the specified character set. If the vendor’s parser is breaking on it, the vendor’s parser is broken.
These logs show that the vendor’s parser might be broken (there’s no data printed from the second one) but they offer no suggestion of what the problem is. The only thing that can tell us what’s going on is the raw bytes actually sent to the server.
One way to capture these is with
netcat(frequently shortened tonc) - a handy utility program that will listen on a specified port and then print exactly what comes in when invoked with-lFor
curl:Versus the result from HTTPoison:
Notable differences:
Content-LengthheadersContent-TypeheadersYou could try passing an explicit
Content-Typeto the form fields; there are bug reports that suggest that some servers don’t handleapplication/octet-streamfields correctly. For instance, pass{"from", from, [{"content-type", "text/plain"}]}instead of{"from", from}. Doing this locally has the desired effect (thecontent-typevalues change for the form fields).On the other hand, apparently some servers don’t like
Content-Length:https://github.com/edgurgel/httpoison/issues/286
pramsky
Thanks for the response @al2o3cr
I believe you may be right about the content-length. I setup a local server to capture raw post dumps and could not really see why the httpoison request would fail while the insomnia request works fine as both requests looked correct. Testing it with pipedream showed no errors and I was able to download the attached file.
If some servers don’t like content length on the fields, that would explain why I get a request 400 from this vendor. I reached out to them asking about it.
pramsky
@al2o3cr
The vendor made a fix on their end and the posts are working without issues. Thanks for your help!