Complete the code to define the main role of an API gateway.
An API gateway acts as a [1] between clients and backend services.
An API gateway acts as a proxy that routes client requests to the appropriate backend services.
Complete the code to describe a key feature of API gateways.
API gateways often provide [1] to control access and protect backend services.
API gateways commonly provide authentication to verify client identity before forwarding requests.
Fix the error in the description of API gateway functionality.
API gateway [1] requests directly to databases without any processing.The API gateway routes requests to backend services, not directly to databases without processing.
Fill both blanks to complete the API gateway request flow.
Client sends a request to the API gateway, which [1] the request and then [2] it to the correct backend service.
The API gateway first validates the request to ensure it is correct and authorized, then forwards it to the appropriate backend service.
Fill all three blanks to describe API gateway features in request handling.
The API gateway [1] incoming requests, [2] them for security, and [3] responses back to clients.
The API gateway receives requests, validates them to ensure security, and sends responses back to clients.