clarketm / jwt-token-generator

Generate JWT Token using Unix command line tools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jwt-token-generator

Generate JWT Token using Unix command line tools

Installation

Source

$ git clone "https://github.com/clarketm/jwt-token-generator.git"
$ cd jwt-token-generator && sudo sh install.sh

Usage

#########################################
#### jwt <header> <payload> <secret> ####
#########################################

$ jwt '{"alg":"HS256","typ":"JWT"}' '{"aud":"mobile","exp":1470646848,"iss":"token.service","sub":"travis"}' 'secreto'

Output

copied to clipboard!

JWT token:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJtb2JpbGUiLCJleHAiOjE0NzA2NDY4NDgsImlzcyI6InRva2VuLnNlcnZpY2UiLCJzdWIiOiJ0cmF2aXMifQ.CaXRXQO2bW/i+69zExHEG0r3riHG82jl8bv73BqK2qs

About

Generate JWT Token using Unix command line tools


Languages

Language:Shell 100.0%