I am trying to develop my web application using microservice architecture. Back-end I am using Spring, Spring Cloud and Spring Boot for microservice. And my front-end application is a Angular 2 application. My front-end application will work according to the back end rest end-point which is calling from Angular 2 application.
- I am trying to create a login for this web app. I planning to use an API key for authentication to back-end service. And my login checking functionality is also a microservice. So here When I calling my back-end service , How I can achieve this API key functionality? Is it need to set constantly as unique variable?
Here API key can not be dynamically manageable,since login functionality itself is a microservice, So I need to use API key for calling login check service which is to be already deployed in the cloud?
How can I understand this scenario?