我正在尝试为 Lambda 函数配置 AWS API Gateway,该函数从 Sendgrid ( https://sendgrid.com/docs/API_Reference/Webhooks/event.html ) 接收事件 Webhook 请求。
请求将从我的内部系统外部发送,因此我希望对其进行某种身份验证。但根据 Sendgrid 的文档,仅支持基本的 http 身份验证。URL 看起来像:http(s)://username:password@domain/foo.php
我不知道如何设置 API Gateway,以便它至少可以将用户名和密码传递给 Lambda 函数。