jordiee

jordiee

I have been working for the last couple weeks on an authentication library that I have enjoyed using in my own personal projects. I would like to hear other peoples opinions!

https://github.com/jpiepkow/accesspass

https://medium.com/@jpiepkow/accesspass-yet-another-elixir-authentication-library-7ea59734a49

Showing Posts 1 to 4

Jer7

Jer7

I’ve read all the docs on AccessPass and it looks to do exactly what I’m trying to implement. I followed the crash course and I think I’m like 75% there, but I can’t work out how to get the AccessPath functions to work with my existing plug. Any suggestions would be great.
I’m new and admittedly pretty dense with Elixir/Phoenix, but I’m learning!

OvermindDL1

OvermindDL1

What code have you done so far and on which code are you stuck on and what would you like the code to look like when complete?

Jer7

Jer7

Sorry for the delay, I also get to put out fires (figuratively)

I have the library installed and a route set up at /admin that returns ‘unauthorized’ when I load it, so it seems to be working. Where I’m lost is what to do now.
Do I need to set up a register/login form and POST the info through @conn? If so, I don’t seem to have proper routes set up for the AccessPass functions.
Am I not setting it up properly in the Router? Do I need to put/call the AccessPass lib files differently? I’ve been trough the docs a bunch of times and they just sort of end where I’m stuck.

My router.ex:

defmodule TcbWeb.Router do
  use TcbWeb, :router
  use AccessPass.Routes

  pipeline :browser do
    plug :accepts, ["html"]
    plug :fetch_session
    plug :fetch_flash
    plug :protect_from_forgery
    plug :put_secure_browser_headers
  end

  pipeline :api do
    plug :accepts, ["json"]
  end

  pipeline :auth do
    plug Auth #Auth is an AccessPass plug to require auth on routes
  end

  scope "/" do
    access_pass :routes

    pipe_through :browser # Use the default browser stack
    get "/", PageController, :index
    resources "/tusers", TcbWeb.TuserController
    resources "/search_data", TcbWeb.TuserController
    resources "/notes", TcbWeb.TuserController
    resources "/login", TcbWeb.LoginController
  end

  scope "/admin" do
    pipe_through :auth
    get "/", PageController, :index
  end
end

My routes:

     _path  GET     /check                 AccessPass.Controller :check
     _path  GET     /refresh               AccessPass.Controller :refresh
     _path  POST    /register              AccessPass.Controller :register
     _path  POST    /confirm               AccessPass.Controller :confirm
     _path  POST    /login                 AccessPass.Controller :login
     _path  POST    /reset_password        AccessPass.Controller :reset_password
     _path  POST    /forgot_username       AccessPass.Controller :forgot_username
     _path  POST    /logout                AccessPass.Controller :logout
     _path  POST    /change_password       AccessPass.Controller :change_password
 page_path  GET     /                      PageController :index
tuser_path  GET     /tusers                TcbWeb.TuserController :index
tuser_path  GET     /tusers/:id/edit       TcbWeb.TuserController :edit
tuser_path  GET     /tusers/new            TcbWeb.TuserController :new
tuser_path  GET     /tusers/:id            TcbWeb.TuserController :show
tuser_path  POST    /tusers                TcbWeb.TuserController :create
tuser_path  PATCH   /tusers/:id            TcbWeb.TuserController :update
            PUT     /tusers/:id            TcbWeb.TuserController :update
tuser_path  DELETE  /tusers/:id            TcbWeb.TuserController :delete
tuser_path  GET     /search_data           TcbWeb.TuserController :index
tuser_path  GET     /search_data/:id/edit  TcbWeb.TuserController :edit
tuser_path  GET     /search_data/new       TcbWeb.TuserController :new
tuser_path  GET     /search_data/:id       TcbWeb.TuserController :show
tuser_path  POST    /search_data           TcbWeb.TuserController :create
tuser_path  PATCH   /search_data/:id       TcbWeb.TuserController :update
            PUT     /search_data/:id       TcbWeb.TuserController :update
tuser_path  DELETE  /search_data/:id       TcbWeb.TuserController :delete
tuser_path  GET     /notes                 TcbWeb.TuserController :index
tuser_path  GET     /notes/:id/edit        TcbWeb.TuserController :edit
tuser_path  GET     /notes/new             TcbWeb.TuserController :new
tuser_path  GET     /notes/:id             TcbWeb.TuserController :show
tuser_path  POST    /notes                 TcbWeb.TuserController :create
tuser_path  PATCH   /notes/:id             TcbWeb.TuserController :update
            PUT     /notes/:id             TcbWeb.TuserController :update
tuser_path  DELETE  /notes/:id             TcbWeb.TuserController :delete
login_path  GET     /login                 TcbWeb.LoginController :index
login_path  GET     /login/:id/edit        TcbWeb.LoginController :edit
login_path  GET     /login/new             TcbWeb.LoginController :new
login_path  GET     /login/:id             TcbWeb.LoginController :show
login_path  POST    /login                 TcbWeb.LoginController :create
login_path  PATCH   /login/:id             TcbWeb.LoginController :update
            PUT     /login/:id             TcbWeb.LoginController :update
login_path  DELETE  /login/:id             TcbWeb.LoginController :delete
     _path  GET     /admin                 AccessPass.Controller :index

Thanks for your time. I like alot about Elixir, but it’s a tough one to learn!

jordiee

jordiee OP

First off thanks for using the AccessPass. AccessPass handles all the API related stuff for user auth so you are correct in that you need to now use Login or Register endpoints to get an access token. AccessPass will then check any request you use the auth pipeline on for a request header ‘access-token’ that is valid.

If your have any more questions feel free to ask!

— All posts loaded —

Where Next? Top

Trending in Announcing Top

woylie
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries. offset-based pagination with...
New
MRdotB
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
woylie
I released Doggo, a collection of unstyled Phoenix components. https://github.com/woylie/doggo Features Unstyled Phoenix components....
New
GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
anuaralfetahe
Hello Published a new library - ProcessHub! ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New
AstonJ
This showed up on my feed.. anyone heard of it? Just hype? Ox Alpha is a reasoning model designed for coding, sustained ag...
New
bartblast
Hey folks, I just published a post about Hologram’s funding and where the project goes next - the short version: Curiosum as Main Spons...
New
CodeSync
:microphone: ElixirConf 2026 - Call for Talks is open! We’re heading to Chicago :united_states: :round_pushpin: In person + virtual :d...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews