在Adyen https://docs.adyen.com/payment-methods/mb-way/api-only上测试MB仅用于API的支付方法有问题。
在我发送请求后,如这里所述,https://docs.adyen.com/payment-methods/mb-way/api-only#make-payment
curl https://checkout-test.adyen.com/v68/payments \
-H 'x-api-key: YOUR_API_KEY' \
-H 'content-type: application/json' \
-d '{
"merchantAccount": "YourCompanyECOM",
"reference": "My first Adyen test payment",
"amount": {
"value": 1000,
"currency": "EUR"
},
"paymentMethod": {
"type": "scheme",
"encryptedCardNumber": "test_4111111111111111",
"encryptedExpiryMonth": "test_03",
"encryptedExpiryYear": "test_2030",
"encryptedSecurityCode": "test_737"
}
}'我收到这个回复
{
"status": 500,
"errorCode": "905_1",
"message": "Could not find an acquirer account for the provided txvariant (mbway), currency (EUR), and action (AUTH).",
"errorType": "configuration",
"pspReference": "GBSGRNJVSBLZNN82"
}到目前为止,我还没有找到在Adyen仪表板上设置收购者帐户的方法。有这样的选择吗,还是我需要做点别的事情来让它发挥作用?
发布于 2022-07-26 08:50:32
https://stackoverflow.com/questions/73050010
复制相似问题