Show List
Introduction to API Gateway
API Gateway works as a middle layer between clients and collection of back end services. So the clients send request to the API Gateway and the gateway may call one or more internal services. API Gateway can provide following functionalities:
- Monitoring and analytics
- Security from attacks such as DDoS, SQL injections.
- Helps reduce complexity as the clients do not need to call several microservices as that can be handled internally.
Leave a Comment