kong-jwt2header
kong-jwt2header copied to clipboard
This Kong API Gateway Plugin can be used to route requests by JWT claim. It does this by converting JWT claims to headers during rewrite phase so that Kong's route by header functionality can be used...
I think this is how the source url should be defined. I was having an issue when following this https://tech.aufomm.com/use-custom-plugins-with-kong/. The git command that `luarocks` was trying to execute on...
I only get those headers set but jwt token has more, e.g. `client_id` or our custom claim `account_code` I think it has something to do with `_` symbol ``` X-Kong-JWT-Claim-iss:...
This improvement should fix the following issue: **Context:** In case my upstream performs operations on a custom HTTP header "x-kong-jwt-claim-dummy" (in theory, extracted from the bearer) **Scenario** 1) In the...
Can you add a configuration to define the claims to extract (instead of all string-type claims) ? like a comma-separted list or an array ```yaml config: claims: claim1, claim2 ```...