You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 14, 2018. It is now read-only.
Leverage the URL rewrite capabilities of Nginx (ex: using the ngx_http_rewrite_module module) and perform a rewrite where the destination URL contains data from the JWT.
Example:
The Nginx endpoint being called is /api/userinfo and the JWT passed by the client contains a field user_id: sandrino123
The rewritten URL to the downstream endpoint becomes https://server01/legacy/api/getuserinfofor/$user_id (where $user_id is a value from the JWT in the Authorization header)
The text was updated successfully, but these errors were encountered:
Leverage the URL rewrite capabilities of Nginx (ex: using the ngx_http_rewrite_module module) and perform a rewrite where the destination URL contains data from the JWT.
Example:
/api/userinfo
and the JWT passed by the client contains a fielduser_id: sandrino123
https://server01/legacy/api/getuserinfofor/$user_id
(where$user_id
is a value from the JWT in the Authorization header)The text was updated successfully, but these errors were encountered: