Guardian.Plug.VerifyAuthorization

Use this plug to verify a token contained in the header.

You should set the value of the Authorization header to:

Authorization: <jwt>

Example

plug Guardian.Plug.VerifyAuthorization

Example

plug Guardian.Plug.VerifyAuthorization, key: :secret

Verifying the session will update the claims on the request, available with Guardian.Plug.claims/1

In the case of an error, the claims will be set to { :error, reason }

Summary

call(conn, opts)
init(opts \\ %{})

Functions

call(conn, opts)
init(opts \\ %{})