PowAssent v0.2.3 PowAssent.Strategy.OAuth.Base behaviour View Source
OAuth 1.0 strategy base.
Usage
defmodule MyApp.MyOAuthStratey do
use PowAssent.Strategy.OAuth
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
def normalize(_config, user) do
{:ok, %{
"uid" => user["id"],
"name" => user["name"],
"email" => user["email"]
}}
end
end
Link to this section Summary
Link to this section Functions
Link to this function
authorize_url(config, strategy) View Source
Link to this function
callback(config, params, strategy) View Source
Link to this section Callbacks
Link to this callback
default_config(arg0) View Source
Link to this callback
get_user(arg0, map) View Source
Link to this callback