danschultzer
Multi-provider support for Pow with out-of-the-box support for many providers. I finally got a 0.1.0 release up today, and I hope some of you will find it useful ![]()
Please let me know if there’s anything that can be improved in the docs or with features. Thanks!
https://github.com/danschultzer/pow_assent
https://hexdocs.pm/pow_assent/
Pow thread: Pow - Robust, modular, extendable user authentication and management system
PowAssent details
Base strategies
- OAuth 1.0
- OAuth 2.0
Strategies
- Azure AD
- Basecamp
- Discord
- Github
- Slack
- VK
Few dependencies
PowAssent has nearly no dependencies. :httpc is used as the default HTTP client with built-in SSL validation!
Mint can be added for HTTP/2 support.
Can PowAssent be used without Pow?
Yes! You can use any strategy directly:
config = [
client_id: "REPLACE_WITH_CLIENT_ID",
client_secret: "REPLACE_WITH_CLIENT_SECRET",
]
{:ok, %{conn: conn, url: url}} = PowAssent.Strategy.Github.authorize_url(config, conn)
case PowAssent.Strategy.Github.callback(config, conn, params) do
{:ok, %{conn: conn, user: user}} -> # …
{:error, reason} -> # …
end
I’ve been using this technique for a lean super admin login.
What about Ueberauth?
You can use Ueberauth with Pow, or add a custom strategy that uses Ueberauth underneath!
However, most strategies uses the OAuth protocols, and it’s much easier to just add your custom strategy. It takes no time to set up. Pull requests are welcome!
A big difference from Ueberauth is that PowAssent is self contained. Strategies are built-in and consists of very little code. They rely on base strategies like OAuth or OAuth2 to do the heavy lifting. All strategies are consistent, and e.g. switching out underlying HTTP client or JSON library is no problem. Unfortunately with Ueberauth you’ll have several different dependencies that each handle things differently. This may also cause dependency conflicts.
Adding a custom strategy
Provider support is super easy. You just need to write one (tiny) module:
defmodule MyApp.CustomStrategy do
use PowAssent.Strategy.OAuth2
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
And then add it to your providers:
config :my_app, :pow_assent,
providers: [
custom_strategy: [
client_id: "REPLACE_WITH_CLIENT_ID",
client_secret: "REPLACE_WITH_CLIENT_SECRET",
strategy: MyApp.CustomStrategy
]
]
Happy coding ![]()
Trending in Announcing
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dimitarvp
Amazing work!
Could you include a link to that library in the root Pow documentation? Having a small section with recommended additional Pow libraries would be very helpful there.
danschultzer
Thanks! It’s in the readme, but it’s kind of hidden towards the end: GitHub - pow-auth/pow: Robust, modular, and extendable user authentication system · GitHub
Maybe it would be better with a reference to it in the
Extensionssection.danschultzer
Pow 0.2.0 released
Changelog: Github
Hex: pow_assent | Hex
This release contains several breaking changes. The plug methods and controllers have been streamlined so they are much easier to work with. However, you don’t need to change a thing unless you’ve a very customized 0.1.0 setup.
Removed Plug.Conn from strategies
Strategies no longer uses plug conn param. Now you only have to pass configuration and params. This means that PowAssent strategies can be used in any context with no expectation for any dependency!
PowInvitation
Support for the new PowInvitation extension in Pow 1.0.3!
It’s plug n’ play. Zero configuration.
blatyo
I noticed you changed things to allow the capture of oauth token values, like access token. That’s cool. However, it seems like user identities aren’t updated after initially created. So, that seems to mean if a user re-logs in to an oauth provider, then the new access token and refresh token won’t get updated. Am I missing something?
danschultzer
You’re right, the user identity is never updated, only created or deleted. When there’s a match for
:providerand:uid, the user will just be authenticated. I’m not sure what the solution should be, so I’ve just opened an issue on github I’ll give this some thought.blatyo
I left a comment on the issue. Update user identity with new access token or fresh token · Issue #69 · pow-auth/pow_assent · GitHub
Hopefully that’s useful.