我正在尝试通过API网关捕获AWS Lambda中的POSTed文件上传参数。
我正在使用Content-Type: application/x-www-form-urlencoded
但是,Lambda函数/ API网关沿以下几行发回错误:
Could not parse request body into json: Invalid UTF-8 start byte 0xbf\n at [Source: [B@24856f29; line: 1, column: 3]"
在API“设置”区域中,我已为“二进制媒体类型”应用程序/ x-www-form-urlencoded进行了设置,但仍将POSTED数据视为JSON。
我想知道如何在不通过S3的情况下将文件上传到Lambda函数(我的上传只有30kb,并且是临时的,不需要存储它们)。