How To Use Erlang's httpc Module
2025-09-03 | #erlang #http
For a project I’m working I needed a http client. Erlang has a couple like gun or hackney. However, I’ve noticed projects like erlcloud and rebar3 use httpc. If there are other http client libraries why should I use httpc? After some searching, I found this post on Erlang Forums. It seems that httpc is worth considering. So I decided to give it a go. Turns out it was a little more complicated so I thought a blog post walking through how to use it would be helpful. I’ll start with a basic version and progressively get to a more production ready form of it.