- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用 ActiveMerchant gem 进行退款。看完API ,我使用这样的退款方法: response = PaymentGateway.refund(nil,transaction_id)
,其中 transaction_id 是我的 17 个字符的交易 ID。当我执行这段代码时,我的日志中出现了这个错误:
Refund error: transaction 90C30922TK2262948, booking 5569, response= #
<ActiveMerchant::Billing::PaypalExpressResponse:0x00000110a4c048 @params=
{"timestamp"=>"2013-12-28T11:58:46Z", "ack"=>"Failure",
"correlation_id"=>"17b440dc61a09", "version"=>"72", "build"=>"8951431",
"refund_transaction_id"=>nil, "message"=>"The transaction id is not valid",
"error_codes"=>"10004", "Timestamp"=>"2013-12-28T11:58:46Z", "Ack"=>"Failure",
"CorrelationID"=>"17b440dc61a09", "Errors"=>{"ShortMessage"=>"Transaction refused
because of an invalid argument. See additional error messages for details.",
"LongMessage"=>"The transaction id is not valid", "ErrorCode"=>"10004",
"SeverityCode"=>"Error"}, "Version"=>"72", "Build"=>"8951431",
"RefundTransactionID"=>nil}
Paypal API 似乎不接受 id 参数。我正在使用 transfer 方法,但我更愿意使用 refund 方法。
最佳答案
请确保您在“捕获”金额时使用交易 ID。在我的应用程序中,我使用授权/捕获/退款 API。 “授权”时的交易ID与“捕获”时的交易ID不同
这是我捕获金额时得到的数据。
timestamp: '2014-01-30T21:59:33Z'
ack: Success
correlation_id: 7803f5d114c45
version: '72'
build: '9285531'
authorization_id: 04G82796YE043610H
transaction_id: 9A656277C6136044L
parent_transaction_id: 04G82796YE043610H
receipt_id:
transaction_type: express-checkout
payment_type: instant
payment_date: '2014-01-30T21:59:32Z'
gross_amount: '15.97'
gross_amount_currency_id: USD
fee_amount: '0.76'
fee_amount_currency_id: USD
tax_amount: '0.00'
tax_amount_currency_id: USD
exchange_rate:
payment_status: Completed
pending_reason: none
reason_code: none
protection_eligibility: Eligible
protection_eligibility_type: ItemNotReceivedEligible,UnauthorizedPaymentEligible
AuthorizationID: 04G82796YE043610H
PaymentInfo:
TransactionID: 9A656277C6136044L
ParentTransactionID: 04G82796YE043610H
ReceiptID:
TransactionType: express-checkout
PaymentType: instant
PaymentDate: '2014-01-30T21:59:32Z'
GrossAmount: '15.97'
FeeAmount: '0.76'
TaxAmount: '0.00'
ExchangeRate:
PaymentStatus: Completed
PendingReason: none
ReasonCode: none
ProtectionEligibility: Eligible
ProtectionEligibilityType: ItemNotReceivedEligible,UnauthorizedPaymentEligible
然后调用退款方法:
Gateway.refund(798,'9A656277C6136044L')
=> #<ActiveMerchant::Billing::PaypalExpressResponse:0x007ff4e744b450
@authorization="70L01419MK614945K",
@avs_result=
{"code"=>nil, "message"=>nil, "street_match"=>nil, "postal_match"=>nil},
@cvv_result={"code"=>nil, "message"=>nil},
@fraud_review=false,
@message="Success",
@params=
{"timestamp"=>"2014-01-31T01:56:47Z",
"ack"=>"Success",
"correlation_id"=>"55810b5eb3c3d",
"version"=>"72",
"build"=>"9285531",
"refund_transaction_id"=>"70L01419MK614945K",
"net_refund_amount"=>"7.75",
"net_refund_amount_currency_id"=>"USD",
"fee_refund_amount"=>"0.23",
"fee_refund_amount_currency_id"=>"USD",
"gross_refund_amount"=>"7.98",
"gross_refund_amount_currency_id"=>"USD",
"total_refunded_amount"=>"7.98",
"total_refunded_amount_currency_id"=>"USD",
"Timestamp"=>"2014-01-31T01:56:47Z",
"Ack"=>"Success",
"CorrelationID"=>"55810b5eb3c3d",
"Version"=>"72",
"Build"=>"9285531",
"RefundTransactionID"=>"70L01419MK614945K",
"NetRefundAmount"=>"7.75",
"FeeRefundAmount"=>"0.23",
"GrossRefundAmount"=>"7.98",
"TotalRefundedAmount"=>"7.98"},
@success=true,
@test=true>
第一个
关于ruby-on-rails - 使用 ActiveMerchant 退款(Paypal 结账 express ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20814577/
我被这个 Java 家庭作业问题困扰: Write a new method, Refund, that simulates the refunding of any remaining credit
我用paypal express完成支付后,我的数据库更新失败了,我该怎么办? 代码如下: $transaction = $this->initPayPalExpress()->complet
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve th
微信小程序或微信支付相关操作支付退款订单查询退款查询支付成功,进行回调退款成功 进行回调用到的方法 支付 ?
我快速浏览了与 Bluesnap webhooks 相关的 IPN 类型和参数 - https://support.bluesnap.com/v2.2.7/docs/ipn-parameter-ref
我正在尝试在测试模式下进行退款 (pilot-payflowpro.paypal.com)(我的货币是英镑,仅供引用) 据我从文档中看到的,我正在正确使用所有内容:https://www.x.com/
我正在尝试用 bash 编写部分退款 Paypal 交易的代码。这是我正在关注的指南 https://developer.paypal.com/docs/classic/api/adaptive-pa
我雇了一个人给我编写了一些代码来取消 Paypal 的 API 中的定期付款,如下所示: function change_subscription_status( $profile_id, $acti
) 我正在尝试在我的应用中实现应用内结算。在 Google Play 开发者控制台中,我声明了一个托管项目。购买此商品效果非常好。但是现在,当我在谷歌钱包商家中心退款或取消购买时,我的应用程序需要很长
我们希望在将 google play 购买退还给用户时进行存储以进行数据分析。 根据文档,用户可以通过 3 种方式申请 Google Play 订阅退款: https://support.google
我用的是paypal native sdk,这里没有退款支付的概念。为此,我们需要 REST API 吗?如果我们使用 REST API,那么我们需要获取事务 ID。我们怎样才能做到这一点? 谢谢,非
我可以使用 RoR 中的 ActiveMerchant 成功地直接向 PaPpal 付款。 如何退款到交易? 最佳答案 汇款将涉及额外的 PayPal 费用。我建议使用 ActiveMerchant
我正在使用 Paypal 的 android sdk V2 开发一个与 Paypal 集成的 android 应用程序。我已成功完成付款交易。但我不知道如何取消交易并使用 Paypal sdk V2
在 Paypal 文档迷宫中,我一直很紧张。我的问题很简单。 是否可以通过具有网络支付标准的 API 调用发起退款? 我知道您可以使用专业版,因为我发现这里散布着各种文档。我还找到了This bit
我正在开发一个集成到 PayPal 的 REST API 中的 PHP 应用程序。我已正确处理事务并将事务 ID 保存到 MySQL 数据库中。我现在正尝试退款,但无法让它停止给出“传入的 JSON
我正在使用 Paypal NVP Refund Api 进行退款 Paypal 交易。一切正常,但当我尝试调用 api 时,它给出了以下响应。 Array ( [TIMESTAMP] => 2
情况: - 用户进行 IAP 并获得一些内容,我们存储用户的设备 ID 以确保他们可以随时访问此内容。 - 用户认为他们不喜欢这些内容,因此他们调用 Apple 并获得退款。 - 用户仍然可以访问
我目前正在研究为 PayPal 退还 web_accept 类型付款的可能性。 我们在我们的网站上接受付款,我想自动退款交易。例如: 我有一个 web_accept 付款:Web Accept Pay
我正在尝试使用 ActiveMerchant gem 进行退款。看完API ,我使用这样的退款方法: response = PaymentGateway.refund(nil,transaction_
我在我的网站上启用了 paypal 自适应支付。当客户从第三方卖家购买任何产品时,卖家会得到大约 90% 的金额,大约 10% 的金额会转移给我。但如果客户想要对该产品进行退款,那么它应该从主要接收方
我是一名优秀的程序员,十分优秀!