I'm developing an api with several microservices, I use Trafik for routing the services. My question is if I can add a security layer that validates the authentication token before the request is dispatched.
The idea is to have a custom middleware for authentication validation and not be doing the validation in the code of each service.
I appreciate the help