ExOauth2Provider v0.4.3 ExOauth2Provider.Token.RefreshToken View Source

Functions for dealing with refresh token strategy.

Link to this section Summary

Functions

Will grant access token by refresh token

Link to this section Functions

Link to this function grant(request) View Source
grant(map()) :: {:ok, map()} | {:error, map(), atom()}

Will grant access token by refresh token.

Example

ExOauth2Provider.Token.authorize(%{
  "grant_type" => "refresh_token",
  "client_id" => "Jf5rM8hQBc",
  "client_secret" => "secret",
  "refresh_token" => "1jf6a"
})

Response

{:ok, access_token}
{:error, %{error: error, error_description: description}, http_status}