Package Data | |
---|---|
Maintainer Username: | kristianlunde |
Maintainer Contact: | opensource@kardigan.no (Kristian Lunde) |
Package Create Date: | 2017-05-06 |
Package Last Update: | 2021-01-07 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-22 03:11:16 |
Package Statistics | |
---|---|
Total Downloads: | 1,038 |
Monthly Downloads: | 20 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Package to read JWT claims sent through the JWT plugin in Kong ((http://getkong.org)) to the upstream api.
It adds a middleware that pulls out all claims and add them to the config under the key "claims".
Add the package
composer require kardigan/laravel-kong-jwt
composer dump-autoload
Add the package to config/app.php under providers
Kardigan\LaravelKongJwt\ServiceProvider::class,
Add the middleware to app/Http/Kernel.php or set dynamically in your routes.
If the x-consumer-custom-id is not set the middleware will return a 403 access denied.
Once the middleware is up and running you can access all claims sent through with the JWT token like this:
Config::get('claims');
The middleware are checking for a jwt token both in the header with the "authorization" key, or as a url parameter with the "token" key