ExOauth2Provider v0.2.3 ExOauth2Provider.Token.Password View Source
Functions for dealing with refresh token strategy.
Link to this section Summary
Functions
Will grant access token by password authentication
Link to this section Functions
Will grant access token by password authentication.
Example
ExOauth2Provider.Token.grant(%{
"grant_type" => "password",
"client_id" => "Jf5rM8hQBc",
"client_secret" => "secret",
"username" => "testuser@example.com",
"password" => "secret"
})
Response
{:ok, access_token}
{:error, %{error: error, error_description: description}, http_status}