Assent v0.1.3 Assent.Strategy.OAuth.Base behaviour View Source
OAuth 1.0 strategy base.
Usage
defmodule MyApp.MyOAuthStratey do
use Assent.Strategy.OAuth
@impl true
def default_config(_config) do
[
site: "https://api.example.com",
authorize_url: "/authorization/new",
access_token_url: "/authorization/access_token"
request_token_url: "/authorization/request_token",
user_url: "/authorization.json",
authorization_params: [scope: "default"]
]
end
@impl true
def normalize(_config, user) do
{:ok, %{
"sub" => user["id"],
"name" => user["name"],
"email" => user["email"]
}}
end
end