Close.io OAuth2 strategy for Überauth.
-
Create an OAuth app in your Close.io Developer settings.
-
Add
:ueberauth_close
to your list of dependencies inmix.exs
:def deps do [{:ueberauth_close, "~> 0.1.0"}] end
-
Add Close.io to your Überauth configuration:
config :ueberauth, Ueberauth, providers: [ close: {Ueberauth.Strategy.Close, []} ]
-
Update your provider configuration:
To read client ID/secret from the environment variables at compile time:
config :ueberauth, Ueberauth.Strategy.Close.OAuth, client_id: System.get_env("CLOSE_CLIENT_ID"), client_secret: System.get_env("CLOSE_CLIENT_SECRET")
To read client ID/secret from the environment variables at run time:
config :ueberauth, Ueberauth.Strategy.Close.OAuth, client_id: {System, :get_env, ["CLOSE_CLIENT_ID"]}, client_secret: {System, :get_env, ["CLOSE_CLIENT_SECRET"]}
-
Include the Überauth plug in your controller:
defmodule MyApp.AuthController do use MyApp.Web, :controller plug Ueberauth ... end
-
Create the request and callback routes if you haven't already:
scope "/auth", MyApp do pipe_through :browser get "/:provider", AuthController, :request get "/:provider/callback", AuthController, :callback end
-
Your controller needs to implement callbacks to deal with
Ueberauth.Auth
andUeberauth.Failure
responses.
For an example implementation see the Überauth Example application.
Depending on the configured url you can initiate the request through:
/auth/close
Please see LICENSE for licensing details.