Current section

Files

Jump to
boruta lib boruta oauth requests token_request.ex
Raw

lib/boruta/oauth/requests/token_request.ex

defmodule Boruta.Oauth.TokenRequest do
@moduledoc """
Implicit request
"""
@typedoc """
Type representing an implicit request as stated in [OAuth 2.0 RFC](https://tools.ietf.org/html/rfc6749#section-4.2.1).
Note : `resource_owner` is an addition that must be provided by the application layer.
"""
@type t :: %__MODULE__{
client_id: String.t(),
redirect_uri: String.t(),
state: String.t(),
scope: String.t(),
resource_owner: struct(),
grant_type: String.t()
}
defstruct client_id: "", redirect_uri: "", state: "", scope: "", resource_owner: nil, grant_type: "implicit"
end