Rest - how to handle authentication in microservice architecture

I am creating a series of RESfull services using the microservice architecture described by Martin Fowler on his blog ( http://martinfowler.com/articles/microservices.html ) But I need all the methods to be accessible exclusively to authorized users. I am implementing a service facade that should handle user authentication and redirect api requests to the appropriate service. How should the facade handler authenticate to the main services? Should all services use basic HTTP authentication on their own, or is there a way for the facade to inherit the user that it authenticates?

thanks

+7
rest restful-authentication restful-architecture
source share

No one has answered this question yet.

See related questions:

5153
PUT vs POST in REST
3861
What is RESTful programming?
2480
How do I send JSON data using Curl from a terminal / command line in Test Spring REST?
1198
SOAP vs REST (differences)
731
REST API / web service security guidelines
671
RESTful Authentication
544
Understanding REST: Verbs, Error Codes, and Authentication
420
Are sessions really breaking RESTfulness?
92
RESTful web service - how to authenticate requests from other services?
one
Multiple user tables in microservice architecture

All Articles