RoR - PayPal ActiveMerchant - 退款
我可以使用 RoR 中的 ActiveMerchant 成功直接向 PaPpal 付款。
我怎样才能对交易进行退款?
I can successfully make a direct payment to PaPpal using ActiveMerchant in RoR.
How can I make refund to a transaction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
汇款将涉及额外的 PayPal 费用。我建议使用ActiveMerchant退款方式。
https://github.com/Shopify /active_merchant/blob/master/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
Money transfer will involve additional PayPal fees. I suggest to use the ActiveMerchant refund method.
https://github.com/Shopify/active_merchant/blob/master/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
Cody Fauser 详细介绍了在 ActiveMerchant 上使用 RoR 进行 PayPal 交易的流程。
一旦您在测试模式下运行,退款就很简单。对于活跃商家,它们被称为“转账”。
在控制器中只需执行如下操作:
Cody Fauser gives a great run down on the process to get a paypal transaction working on ActiveMerchant with RoR.
Once you get that running in test mode, it's simple to do refunds. With activemerchant, they're called 'transfers'.
In the controller just do something like below: