gpt4 book ai didi

amazon-web-services - 在 Amazon API Gateway 中使用 API key

转载 作者:行者123 更新时间:2023-12-03 07:13:34 24 4
gpt4 key购买 nike

我已经创建了一个 API key 并将其添加到我的函数中。然后我部署了 api 并对其进行了测试,但仍然得到:

"message": "Forbidden"

当我一直使用 "x-api-key": "theKey"时,如何通过 JSON 请求传递 api key ?

最佳答案

x-api-key 参数作为 HTTP header 参数传递(即,它不会添加到 JSON 正文中)。传递 HTTP header 的方式取决于您使用的 HTTP 客户端。

例如,如果您使用curl并假设您POST JSON有效负载,则请求将类似于(其中您将[api-id]替换为实际 ID 和 [region] 与您的 API 的 AWS 区域):

$ curl -X POST -H "x-api-key: theKey" -H "Content-Type: application/json" -d '{"key":"val"}' https://[api-id].execute-api.[region].amazonaws.com

关于amazon-web-services - 在 Amazon API Gateway 中使用 API key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39061041/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com