Kreuzcrawl.AuthConfig (kreuzcrawl v0.3.0-rc.43)

Copy Markdown

Authentication configuration.

Summary

Types

HTTP Basic authentication.

Bearer token authentication.

Custom authentication header.

t()

Authentication configuration.

Types

basic()

@type basic() :: %{type: :basic, username: String.t(), password: String.t()}

HTTP Basic authentication.

bearer()

@type bearer() :: %{type: :bearer, token: String.t()}

Bearer token authentication.

header()

@type header() :: %{type: :header, name: String.t(), value: String.t()}

Custom authentication header.

t()

@type t() :: term()

Authentication configuration.