我在 Adyen 建立了一个测试帐户。我尝试通过测试 API 付款。以下有效负载提供给以下端点:
https://checkout-test.adyen.com/v37/payments
有效载荷/车身:
{
amount: {
currency: "EUR",
value: price
},
countryCode: "NL",
shopperLocale:"nl_NL",
reference: description,
paymentMethod: {
type: "ideal"
},
returnUrl: "https://xxx.nl",
merchantAccount: "xxxxx"
}
正如预期的那样,将返回带有重定向 url 的响应。当我转到那个 URL 时,我可以按预期在不同的银行之间进行选择。只是,当我选择银行付款时,页面会告诉我Error: Signature not supplied
。这是什么意思?我必须怎么做才能成功完成我的测试付款?