BoZhenka
How send GET-request with a body?
Hello there,
Here I have this request in curl:
curl
-H "AUTHENTICATION: HMAC GPLDIS8H7N5KY8DG:c6881c8bbcee2daceb5d8c2bb54078702bca23d828d7468afeb2f6ed0f25366f:1549890568"
-X GET
-d '{"customer_id":"Chrome","customer_ip":"127.0.0.1"}' 'https://testrest.vload.expert/voucher/validate/2698937783822253/Chrome/11234576536'
This is bad practice with using body in GET-request, unfortunately it is not my choice. So, how can I send it using some Elixir/Erlang library?
I was trying do it by using HTTPoison, HTTPotion in Elixir. And httpc in erlang, but httpc even don’t send GET-request if I put body to it:
:httpc.request(:get, {url, headers, 'text/plain', 'body'}, [], [])
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 10 Posts
NobbZ
Not only bad style, but also absolutely useless, as it is not allowed to change the servers response.
Because of this proxies might decide to not forward the body.
And you away,
:httpcwouldn’t even send aGETrequest. Could you tell us what it does instead? Does it crash? Returns an error? Sends aPOST?BoZhenka
If change method to the POST, it will send. But it is not will be working because of someone wrote API only for a body with GET.
NobbZ
It htrows an error, Okay.
So
:httpcdoesn’t allow sending a body withGETrequest, you can not change that. (well you could “fork”:httpcand allow it, with a very high chance its just adding/removing some condition to a guard).Have you tried
HTTPotion.request? I consider the code ugly, and only skimmed it, but on a first glance I haven’t seen any guards against it. If though:hackneydoes validate the request you are out of luck again. Then you need to check the same forHTTPoisonand:ibrowse.And of course you can use
:tesla, it uses:httpc,:hackneyor:ibrowseas backend though.Last but not least, you can of course just omit the body, as its presence or content shouldn’t have any effect on the response, if though it does please point the authors of the API to the RFC:
And
GETdoes not define any semantics.Last but not least, you have the choice to simply use
System.cmdtocurlany request you want until you find a way to convince the API-Designer to repair their product…sribe
“Not allowed to” meet “real world”, “real world” meet “not allowed to”
I agree, obviously, that it is a HORRIBLE design for an API, in fact it is just not HTTP. And I would definitely point that out to the API designers, especially the part about proxies dropping it.
But ultimately, sometimes, we have to use non-compliant APIs.
lyo5ha
As far as HTTPoison builds on
.
hackney, it’s possible to handle such unconventional request. It’s not documented well on HTTPoison page, but worksNobbZ
BTDT, but even worse… The underlying server expected some headers in exact order, no more, no less…
Still, we were able to convince the API provider to change this behaviour, as we consumed the API via mobile networks which again were force proxies and the proxies of course touched the headers.
So telling the provider about problems might help them to see issues they didn’t know to exist.
sribe
Oh absolutely, I had to deal with one with case-sensitive headers, which presents some issues with Elixir. (Tests, IIRC, check case and want all lower…)
Funny thing is, we owned the service in question, and were afraid to even try to touch the code. In fact, that’s one extremely minor example of why the Elixir program in question came into existence.
But yeah, just to reiterate: do point it out to the devs, they may well want to fix it.
khaskelberg
This RFC is now obsolete. It was replaced by RFC 7230-7237. And this RFC allows to send body with GET request.
It is still not a good idea, but it doesn’t contradict HTTP/1.1 spec
NobbZ
I should take a closer look at those obseletion markers at the top
Neither does the fact that some clients do not allow to create such a request.
Anyway, there are clients available in elixir that allow
GETwith body as pointed out earlier. It’s not necessarily convenient to do soAnd still, third party issues exist. A proxy dropping the request does not act against the spec either and still makes it impossible to use the service. This is something that could cost the API provider money and they should be made aware of the issue.
BoZhenka
Blimey, how I missed it(
Thank’s