Check HTTPoison requirements
mainHTTPoison 3.x requires the following environment versions:
- hackney: 4.0
- Erlang/OTP: 27 or later
- Elixir: 1.17 or later
Older OTP releases are not supported.
repository·main·Indexed 25 days ago
https://github.com/edgurgel/httpoisonAn Elixir HTTP client built on top of HTTPotion that provides a high-level interface for making synchronous and asynchronous HTTP requests.
HTTPoison 3.x requires the following environment versions:
Older OTP releases are not supported.
The primary breaking change in version 3.0 is how the ssl option is handled. In 3.x, the ssl option now merges with the default options. In version 2.x, the ssl option would override the default options.
If you need to maintain the previous behavior (overriding defaults), use the new ssl_override option.
To use HTTPoison in your Elixir project, add it to your mix.exs dependencies and fetch the dependencies using the CLI.
def deps do
[
{:httpoison, "~> 3.0"}
]
endThen run:
$ mix deps.get