Payeezy“缺少付款方式”
Payeezy “payment method is missing”
我的 Payeezy 出现错误“缺少付款方式”
我正在测试授权我认为不需要付款方式的交易。
这是我的代码
这是我们网站 http://wolcottschoolpay.com/test/payeezy_php/test.php
上的回复
{
correlation_id: "228.1440254919101",
Error:
{
messages:
[
{
code: "payment_method_missing",
description: "The payment method is missing"
},
{
code: "missing_amount",
description: "The amount is missing"
},
{
code: "missing_currency",
description: "The currency is missing"
}
]
},
transaction_status: "Not Processed",
validation_status: "failed",
transaction_type: "authorize",
currency: "USD”
}
我在github.github.
官方payeezyphp直接库上复制了这里的大部分内容
授权交易在第 127 行
https://github.com/payeezy/payeezy_direct_API/blob/master/payeezy_php/example/tests/PayeezyTest.php
我还尝试了我的商家测试详细信息和 payeezy 图书馆提供的详细信息,但 none 成功了。
这是图书馆的问题吗?有什么想法吗?
如错误消息所示,您的请求 JSON 负载缺少金额、货币和付款方式。请添加这些并重试。
首先你需要在api请求中添加x_currency_code和x_amount。没有金额和货币它不能处理交易。
要处理付款,您需要select付款方式,例如 VISA、AMERICAN EXPRESS、DISCOER 等...
我的 Payeezy 出现错误“缺少付款方式”
我正在测试授权我认为不需要付款方式的交易。
这是我的代码
这是我们网站 http://wolcottschoolpay.com/test/payeezy_php/test.php
上的回复{
correlation_id: "228.1440254919101",
Error:
{
messages:
[
{
code: "payment_method_missing",
description: "The payment method is missing"
},
{
code: "missing_amount",
description: "The amount is missing"
},
{
code: "missing_currency",
description: "The currency is missing"
}
]
},
transaction_status: "Not Processed",
validation_status: "failed",
transaction_type: "authorize",
currency: "USD”
}
我在github.github.
官方payeezyphp直接库上复制了这里的大部分内容授权交易在第 127 行 https://github.com/payeezy/payeezy_direct_API/blob/master/payeezy_php/example/tests/PayeezyTest.php
我还尝试了我的商家测试详细信息和 payeezy 图书馆提供的详细信息,但 none 成功了。
这是图书馆的问题吗?有什么想法吗?
如错误消息所示,您的请求 JSON 负载缺少金额、货币和付款方式。请添加这些并重试。
首先你需要在api请求中添加x_currency_code和x_amount。没有金额和货币它不能处理交易。
要处理付款,您需要select付款方式,例如 VISA、AMERICAN EXPRESS、DISCOER 等...