req
req copied to clipboard
Req is a batteries-included HTTP client for Elixir.
I have a route that requires `test=a,b` but when passed as a param to `Req` it converts that into `test=a%2Cb` which is wrong. Current work around is ```elixir defp put_param_unencoded(req)...
Addressing issue https://github.com/wojtekmach/req/issues/122 Stole idea from Tesla: https://github.com/elixir-tesla/tesla/blob/master/lib/tesla/middleware/core.ex#L33-L52
Hey, @wojtekmach! Thanks for the work on `Req`, most charming elixir HTTP lib ✨ I was wondering what's the best way to figure out that retry attempts were exhausted. Not...
I stumbled across an API where I need to carry one specific param the whole time. Therefore I thought it might be useful to have the `base_url` functionality for params...
Hey everyone, I just ran into an issue where the following code results in a 404 error: ```elixir settings = Req.new( base_url: "https://api.apaleo.com/settings/v1", auth: {:bearer, access_token}, headers: [ "content-type": :"application/json",...
Hi @wojtekmach, Is streaming support something you'd consider as part of the API for Req? e.g. something like this: ``` url = "https://api.twitter.com/2/tweets/sample/stream" inspect_stream = fn item -> IO.inspect item...
- Closes #62