Complete the code to show the main role of an API gateway in microservices.
An API gateway acts as a single [1] point for all client requests to microservices.
The API gateway provides a single entry point for clients to access multiple microservices, simplifying communication.
Complete the code to describe a benefit of using an API gateway.
API gateways help by [1] requests to the correct microservice behind the scenes.Routing means directing client requests to the appropriate microservice, which API gateways handle efficiently.
Fix the error in the statement about API gateways.
API gateways directly [1] the database of each microservice.API gateways do not directly access or manage databases; they route requests to microservices which handle databases.
Fill both blanks to complete the API gateway's functions.
API gateways provide [1] control and [2] aggregation for microservices.
API gateways handle security control and response aggregation to simplify client interactions.
Fill all three blanks to describe API gateway benefits.
API gateways [1] client requests, [2] microservice complexity, and [3] cross-cutting concerns like authentication.
API gateways simplify requests, hide complexity, and handle concerns such as authentication for clients.