添加自定义Response Body编码无服务器yaml

时间:2018-04-13 12:58:07

标签: amazon-web-services aws-api-gateway serverless-framework serverless

我使用无服务器进行API部署,所有内容都运行得很好,在“text / html; charset = utf-8”中有关于响应体编码的要求,

events:
- http:
    path: test/test2
    method: post
    private: false
    integration: lambda
    request:
      template:
        application/x-www-form-urlencoded: '#set($inputRoot = $input.path("$")) '
    response:
      statusCodes:            
        200:
          pattern: ''
          headers:
            charset: "'utf-8'"

我需要实现的是在下面的图像中显示(实际上它是APIGATEWAY - 方法响应图像)

https://imgur.com/a/xDHxv

通过无服务器文档,但没有找到任何有用的东西, 任何提示??

由于

0 个答案:

没有答案