A video covering a very simple way of implementing JWT Authentication in a REST API using Go (golang).
Generate RSA signing files via shell:
$ openssl genrsa -out app.rsa 1024
$ openssl rsa -in app.rsa -pubout GREATER_THAN app.rsa.pub
(Replace the GREATER_THAN with the actual symbol, it does not let me write it in the description)
Look at the code:
https://goo.gl/ofVjK4
Twitter: @digerati_online / @thealexcons