PowAssent v0.2.0 PowAssent.Strategy.OAuth2.Base behaviour View Source
OAuth 2.0 strategy base.
Usage
defmodule MyApp.MyOAuth2Strategy do
use PowAssent.Strategy.OAuth2.Base
def default_config(_config) do
[
site: "https://api.example.com",
user_url: "/authorization.json"
]
end
def normalize(_config, user) do
%{
"uid" => user["id"],
"name" => user["name"],
"email" => user["email"]
}
end
end