View Source Boruta.Oauth.PasswordRequest (Boruta core v2.3.3)

Resource owner password credentials request

Summary

Types

t()

Type representing a resource owner password credentials request as stated in OAuth 2.0 RFC.

Types

@type t() :: %Boruta.Oauth.PasswordRequest{
  client_authentication: %{type: String.t(), value: String.t()},
  client_id: String.t(),
  grant_type: String.t(),
  password: String.t(),
  scope: String.t(),
  username: String.t()
}

Type representing a resource owner password credentials request as stated in OAuth 2.0 RFC.