PUT 和 DELETE 类型在 lambda 函数的无服务器框架中引发错误
这是端点详细信息。 HTTP 被放置。
- 尝试使用允许凭据 true,但没有成功。
- 更新了云前端 包括 PUT 和删除的权限不起作用。
- 仅仅有 cors: true 也不起作用。
- 我们正在使用响应标头将原点设置回原点,但仍在之后 飞行前原点设置为 *。因此我们收到了 cors 错误。 (不确定它是如何转换为 * 的,因为所有其他端点/函数(GET/POST)都设置了正确的标头源。
This is the endpoint details.
Http is PUT.
- Tried with allow credentials true, did not work.
- Updated Cloud front
permissions to include PUT and delete, did not work. - Just having cors: true also did not work.
- 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们使用 Serverless 版本 2.72.0,这就是我们在 .yml 文件中定义允许的 http 方法的方式。
We are using version 2.72.0 for Serverless and this is how we define allowed http methods in our .yml file.