View Source Boruta.Oauth.Authorization.ResourceOwner (Boruta core v2.1.0)

Check against given params and return the corresponding resource owner

Link to this section Summary

Functions

Authorize the resource owner corresponding to the given params.

Link to this section Functions

Specs

authorize(
  [email: String.t(), password: String.t()]
  | [{:resource_owner, Boruta.Oauth.ResourceOwner.t()}]
) ::
  {:error,
   %Boruta.Oauth.Error{
     error: :invalid_resource_owner,
     error_description: String.t(),
     format: nil,
     redirect_uri: nil,
     state: term(),
     status: :unauthorized
   }}
  | {:ok, user :: Boruta.Oauth.ResourceOwner.t()}

Authorize the resource owner corresponding to the given params.

Examples

iex> authorize(id: "id")
{:ok, %Boruta.Oauth.ResourceOwner{...}}