/jwt-extractor

Primary LanguageJavaMIT LicenseMIT

build/test

jwt-extractor

This service provides methods to decode a JWT inspired by jwt.io.

Provide a JWT as a runtime parameter

 docker run --rm jburgess/jwt-extractor ./jwt-extractor [JWT]

JWT Extract via REST Service

docker run jburgess/jwt-extractor -p 8080:8080
curl --location --request POST 'http://localhost:8080/extractJwt' \
--header 'Content-Type: application/json' \
--data-raw '{ "token": "[JWT]" }'