ExOauth2Provider v0.3.3 ExOauth2Provider.Plug.VerifyHeader View Source
Use this plug to authenticate a token contained in the header. You should set the value of the Authorization header to:
Authorization: <token>
Example
plug ExOauth2Provider.Plug.VerifyHeader
A “realm” can be specified when using the plug. Realms are like the name of the token and allow many tokens to be sent with a single request.
plug ExOauth2Provider.Plug.VerifyHeader, realm: "Bearer"
When a realm is not specified, the first authorization header found is used, and assumed to be a raw token
example
plug ExOauth2Provider.Plug.VerifyHeader
# will take the first auth header
# Authorization: <token>