One of the challenges of microservices architectures is that clients need to connect to many services, with multiple endpoints, each possibly having different design and implementation characteristics.
The solution to this problem is a common microservices design patterns called API Gateway, which is simply a way to provide a single entry point for clients to connect, and the gateway will route and proxy requests to the appropriate services, do any needed transformation to create a unified experience for the clients.
You can write another application to be the API Gateway, or you could use existing services in Azure. Join this session to learn how to use API Management, Application Gateway and Azure Functions to create an API Gateway for your microservices.
You will learn:
- Overview of API Gateway
- Getting started with Azure API Management
- Integrating APIM with your solutions