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
I'm using express-gateway for a cloud based project. I have a requirement where I have to implement authorization as given below:
validate the JWT token to make sure that the request is authenticated
extract the claims from the token
based on requested endpoint and the extracted claims, perform authorization
if the request is authorized, put the extracted claims into header and forward the request to downstream
if the request is not authorized, send 403 Forbidden
this is a very key functionality that is needed in the gateway.
Is it possible with express-gateway? Is there any documentation or any guidance available on how can this be achieved?
The text was updated successfully, but these errors were encountered:
I'm using express-gateway for a cloud based project. I have a requirement where I have to implement authorization as given below:
this is a very key functionality that is needed in the gateway.
Is it possible with express-gateway? Is there any documentation or any guidance available on how can this be achieved?
The text was updated successfully, but these errors were encountered: