joken

JWT Auth in Phoenix with Joken

JSON Web Tokens [https://jwt.io/introduction/], or JWTs, allow us to authenticate requests between the client and the server by encrypting authentication information into a secure, compact JSON object that is digitally signed. In this post, we'll use the Joken [https://github.com/bryanjos/joken] library to…