ExLinkHeader
Parse HTTP link headers in Elixir.
Goal is to implement all in section 5 of http://tools.ietf.org/id/draft-nottingham-http-link-header-06.txt, however this is currently lacking support for:
-
multiple
link-paramvalues - multiple values within link-param keys
Installation
The package can be installed as:
Add ex_link_header to your list of dependencies in
mix.exs:def deps do
[{:ex_link_header, "~> 0.0.1"}]end
Ensure ex_link_header is started before your application:
def application do
[applications: [:ex_link_header]]end