简体   繁体   English

Payeezy“缺少付款方式”

[英]Payeezy “payment method is missing”

my Payeezy is throwing an error “payment method is missing” 我的Payeezy抛出错误“缺少付款方式”

im testing authorize transaction which i believe doesnt require payment method. 我正在测试授权交易,我认为不需要付款方式。

here's my code 这是我的代码

http://pastebin.com/gEyAfyuf http://pastebin.com/gEyAfyuf

here's the response on our site at http://wolcottschoolpay.com/test/payeezy_php/test.php 这是我们网站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”
}

I copied most of the part here on the official payeezy php direct library on github. 我将大部分内容复制到了github上的官方payeezy php direct库中。

authorize transaction is on line 127 https://github.com/payeezy/payeezy_direct_API/blob/master/payeezy_php/example/tests/PayeezyTest.php 授权交易位于第127行https://github.com/payeezy/payeezy_direct_API/blob/master/payeezy_php/example/tests/PayeezyTest.php

i also tried both my merchant test details and the one provided at payeezy library but none worked. 我还尝试了我的商家测试详细信息以及在payeezy库中提供的详细信息,但没有一个有效。

Is this a library issue? 这是图书馆问题吗? any idea? 任何想法?

As the error message suggests, your request JSON payload is missing amount, currency and payment method. 如错误消息所示,您的请求JSON有效负载缺少金额,货币和付款方式。 Please add those and try again. 请添加这些内容,然后重试。

First you need to add x_currency_code and x_amount in api request. 首先,您需要在api请求中添加x_currency_code和x_amount。 without amount and currency it can not process transaction. 没有金额和货币,就无法处理交易。

And to process payment you need to select payment method like VISA, AMERICAN EXPRESS, DISCOER etc... 要处理付款,您需要选择付款方式,例如VISA,AMERICAN EXPRESS,DISCOER等...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM