PUT 和 DELETE 类型在 lambda 函数的无服务器框架中引发错误

发布于 2025-01-09 21:53:28 字数 664 浏览 1 评论 0原文

这是端点详细信息。 HTTP 被放置。

输入图片此处描述

  1. 尝试使用允许凭据 true,但没有成功。
  2. 更新了云前端 包括 PUT 和删除的权限不起作用。
  3. 仅仅有 cors: true 也不起作用。
  4. 我们正在使用响应标头将原点设置回原点,但仍在之后 飞行前原点设置为 *。因此我们收到了 cors 错误。 (不确定它是如何转换为 * 的,因为所有其他端点/函数(GET/POST)都设置了正确的标头源。

在此处输入图像描述

在此处输入图像描述

This is the endpoint details.
Http is PUT.

enter image description here

  1. Tried with allow credentials true, did not work.
  2. Updated Cloud front
    permissions to include PUT and delete, did not work.
  3. Just having cors: true also did not work.
  4. We are setting the origin back with response header but still after the
    preflight the origin is set to *. Because of which we are receiving cors error.
    (Not sure how it is being converted to * because all other endpoints/functions(GET/POST) has proper header origin set.

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情定在深秋 2025-01-16 21:53:28

我们使用 Serverless 版本 2.72.0,这就是我们在 .yml 文件中定义允许的 http 方法的方式。

provider:
    name: aws
    region: us-west-1
    apiGateway:
    binaryMediaTypes:
        - '*/*'
    httpApi:
        cors: true
        allowedMethods:
            - GET
            - POST
            - PUT
            - DELETE
            - PATCH
    functions:
        ...

We are using version 2.72.0 for Serverless and this is how we define allowed http methods in our .yml file.

provider:
    name: aws
    region: us-west-1
    apiGateway:
    binaryMediaTypes:
        - '*/*'
    httpApi:
        cors: true
        allowedMethods:
            - GET
            - POST
            - PUT
            - DELETE
            - PATCH
    functions:
        ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文