digestex

An elixir module for doing HTTP digest authentication using erlang httpc


License
Artistic-2.0

Documentation

Digestex

Build Status Hex.pm Version

An Elixir module that does Digest Auth on top of erlangs httpc

Synopsis

  {:ok, response} = Digestex.get("http://www.example.com/")

  {:ok, response} = Digestex.get_auth("http://www.example.com/", "user", "pass")

Installation

If available in Hex, the package can be installed as:

```elixir
def deps do
  [{:digestex, "~> 0.4.2"}]
end
```

And then :digestex should be added to you list of applications in mix.exs

Examples

You can see usage examples in the test files (located in the test/) directory.