我创建了一个新的.NET无服务器应用程序并将其发布在Lambda上,我想启用GZIP(Br)压缩。
但是,它给了我这个错误:ERR_CONTENT_DECODING_FAILED
它在localhost上正常工作。
我已经在API网关上启用了压缩选项,但它没有帮助。
我应该设置什么才能使其正常工作?
由于
答案 0 :(得分:0)
内容压缩由API网关处理,它从lambdas发送和接收未压缩的内容 - lambdas是并且应该不知道可能发生的任何压缩。
以下是在API网关上启用压缩的文档:https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-gzip-compression-decompression.html
https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-enable-compression.html