View Source OIDC

Convenience functions to work with OpenID Connect

It includes:

installation

Installation

def deps do
  [
    {:oidc, "~> 0.5"},
    {:hackney, "~> 1.0"}
  ]
end

The hackney dependency is used as the default adapter for Tesla. Another one can be used instead (see https://github.com/teamon/tesla#adapters) and then has to be configured in your config.exs:

config :tesla, adapter: Tesla.Adapter.AnotherOne