Digestex

Build StatusHex.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
```

Examples

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