Latest #req Threads 
A note on a pattern I keep running into in Elixir API clients: status-code checks and body parsing live in code after Tesla.request, inst...
New
This thread is the home for updates and discussion across the Omni family of packages. What started as a single library for calling LLM A...
New
AgentObs - LLM Agent Observability for Elixir
I’m excited to share AgentObs, a new library for instrumenting LLM agentic
applications in...
New
Hello Elixir community! :wave:
I’m excited to announce the first release of ReqCassette, a VCR-style record-and-replay library specifica...
New
I’ve release ReqWebSocket, a Req plugin for establishing WebSocket connections, using Mint.WebSocket.
resp =
Req.new(connect_options: ...
New
Hi!
I have a Downloader module that GETs files given a URL, using Req. It has a timeout option but I would like to abort the download wh...
New
If you want to perform arbitrary external HTTP requests you have to be very careful to avoid Server-Side Request Forgery (SSRF). Certain ...
New
Hey everyone!
I’m excited to share ReqLLM - a new approach to LLM interactions in Elixir that I’ve been working on. After building agent...
New
I guess you can say @wojtekmach nerd sniped me into trying out backing Req.Test mocks with Bandit, so that your test Req test requests ar...
New
I’m making HTTP requests from inside a Poolboy pool.
I’m having a hell of a time trying to use Req.Test stubs in ExUnit in an e2e workfl...
New
This Week's Trending
This thread is the home for updates and discussion across the Omni family of packages. What started as a single library for calling LLM A...
New
This Month's Trending
This Year's Trending
Hey everyone!
I’m excited to share ReqLLM - a new approach to LLM interactions in Elixir that I’ve been working on. After building agent...
New
Hello Elixir community! :wave:
I’m excited to announce the first release of ReqCassette, a VCR-style record-and-replay library specifica...
New
If you want to perform arbitrary external HTTP requests you have to be very careful to avoid Server-Side Request Forgery (SSRF). Certain ...
New
Hi!
I have a Downloader module that GETs files given a URL, using Req. It has a timeout option but I would like to abort the download wh...
New
Hello folks, I couldn’t find information regarding this. Maybe there is a package for Req to make WebSocket requests or since it is built...
New
AgentObs - LLM Agent Observability for Elixir
I’m excited to share AgentObs, a new library for instrumenting LLM agentic
applications in...
New
I’ve release ReqWebSocket, a Req plugin for establishing WebSocket connections, using Mint.WebSocket.
resp =
Req.new(connect_options: ...
New
I’m making HTTP requests from inside a Poolboy pool.
I’m having a hell of a time trying to use Req.Test stubs in ExUnit in an e2e workfl...
New
I guess you can say @wojtekmach nerd sniped me into trying out backing Req.Test mocks with Bandit, so that your test Req test requests ar...
New
A note on a pattern I keep running into in Elixir API clients: status-code checks and body parsing live in code after Tesla.request, inst...
New
I have a app in Fly.io called skip-trace-proxy with a squid HTTP proxy running. That app is deployed with flycast meaning that I should b...
New
Last Three Year's Trending
I would like to upload file to s3 pulled from a URL without having to store it in a temp file. If I understand it correctly it is doable ...
New
I’m doing a POST request using Req but i’m getting the error ** (ArgumentError) unknown registry: Req.Finch. I found the same problem on ...
New
Hey gang,
I’ve been using Req as my primary client for a project I’ve been working on that interacts with a number of APIs, and I quickl...
New
Hey there,
I’m trying to make a Req request with the following config, but I’m struggling a bit.
The curl I’m trying to make into a Req...
New
Hello friends, Imagine you want to download a tar file from hex.pm website.
I have this function and do not want to install req hex plug...
New
Hello, in our Phoenix API, we’re making numerous calls to external APIs like Opena Ai, with long responses that can take 2 to 15 seconds....
New
I am able to do MTLS connections to a given service using curl and httpie. That works fine.
An example of a working httpie command http ...
New
Hi all,
I’m working on a Phoenix project where I need to make external HTTP requests and I’m trying to choose between Req and HTTPoison....
New
How should I define a proxy server with authentication (user: pass) in req (it’s an organizational proxy to the outside world).
The docu...
New
Hello Guys,
I’m building tools using Elixir, Phoenix & LiveView to learn and perhaps have a portfolio.
There’s a LinkedIn post insp...
New
I’m trying to understand why this code works for one provider but not for another
[
url: "https://ip.smartproxy.com/json",
connect_o...
New
I have a simple GenServer making an HTTP request
defmodule GamePlay do
use GenServer
alias Wrapper
def start_link(_args) do
...
New
Hello,
I have been working on an app that uses Req to access a REST API at an AAAA domain record. The domain record is resolvable global...
New
I would like evaluate elixir for scripting and followed the samples here: [Single File Elixir Scripts · The Phoenix Files]
and stuck the...
New
Hey everyone,
I’m still pretty new to Elixir so I don’t have any experience with any HTTP library, but ran into an issue using Req. Sinc...
New
Trending Over Three Years
Hello, can anyone point me to an article/post on how to do concurrent requests in Elixir? Here is an article where the author uses pytho...
New
Dear all,
I threw together a custom step for req that accumulates the responses from the redirects that were followed.
Basically, I re-...
New
I’m currently using Req in an application, and as I’m thinking about potential security concerns, I have two scenarios in mind where I wo...
New
In the docs it says I can stub Req in tests with a config like this:
# config/test.exs
config :myapp, weather_req_options: [
plug: {Re...
New
Hello,
I am trying to learn Elixir through building a remittance aggregator starting with consuming third party API services like Master...
New
How do we limit a Req.post! or Req.get! to a total timeout of just 2000ms?
I have an integration that needs very timely responses.
Limi...
New
This CURL request works fine:
curl -X POST \
-H "Ocp-Apim-Subscription-Key: 123123123123123" \
-F "knowledgeRequest={\"imageInfo\":{\"ur...
New
I tried to fetch titles of objects using req with req_s3 plugin.
def new_req(options \\ []) when is_list(options) do
access_key = Syst...
New
I just released version 0.8.0 of HttpCookie, a standards-compliant (client-side) HTTP Cookie implementation.
It’s not a new library, but...
New
Kubegen generates Kubernetes clients in the form of resource based client modules directly into your project.
I have been co-maintaining...
New
I use the Req library to download a resource. I got the resource from a podcast RSS feed.
enclosure_url = "https://example.com/file 1.mp...
New
There’s a python/fastapi service that streams audio files. I don’t have access to the code of this service.
This works fine and the audi...
New
Hi everyone,
I recently made a library of Req plugins for some web-crawl-adjacent stuff I’m working on and figured I would share it.
...
New
Attempting default configuration HTTP requests with Req dependent Escript executables (executables built using mix escript.build) yields:...
New
This is a bit of an exploratory question, and I’d love any thoughts you have. I’m posting early in my research because I think this might...
New
Latest on Elixir Forum
Get money off!
The Pragmatic Bookshelf
35% off any eBook
Manning Publications
45% off any item
ElixirCasts
10% off for life
The Pragmatic Studio
20% off any course
AppSignal
10% off for 12 months
Honeybadger
10% off for 12 months
Simply use coupon code "devtalk.com" or "elixirforum" at checkout!
Filter by Type:
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #exunit
- #elixirconf
- #discussion
- #javascript
- #podcasts
- #code-sync
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #api
- #processes
- #forms
- #metaprogramming
- #security
- #performance
- #hex







