Creating and validating JWT JSON web tokens
This article goes through the process of creating and validating JWT’s (JSON web tokens) using Scala.
Our implementation uses the awesome io.jsonwebtoken library, and can be added to a sbt project like this:
1libraryDependencies ++= Seq( …