我正在尝试将AWS中的API网关配置为从Adyen平台接收webhooks。
我使用API网关与S3桶集成,并使用以下链接创建了API
身份验证在我的配置中是“无”的,但是我观察到了与授权相关的错误。因为我刚接触过API,所以我无法理解这一点。
webhook是HTTP方法
{
"live": "false",
"notificationItems": [
{
"NotificationRequestItem": {
"amount": {
"currency": "EUR",
"value": 0
},
"eventCode": "REPORT_AVAILABLE",
"eventDate": "2022-11-22T15:19:37+01:00",
"merchantAccountCode": "COM",
"merchantReference": "testMerchantRef1",
"pspReference": "1OW4XY4YXEFDLM0F",
"reason": "will contain the URL to the report",
"success": "true"
}
}
]
}我收到的回复是
{"message":"Authorization header requires 'Credential' parameter. Authorization header requires 'Signature' parameter. Authorization header requires 'SignedHeaders' parameter. Authorization header requires existence of either a 'X-Amz-Date' or a 'Date' header. Authorization=Basic amFnYTYxOTBAZ21haWwuY29tOndJTERGSVJFQDEyMw=="}Amazon网关配置
发布于 2022-11-22 14:30:37
https://stackoverflow.com/questions/74534228
复制相似问题