0

我正在创建一个使用 Paymill 处理付款的 Rails 3.2 应用程序。我可以使用活跃商家进行一次性付款。问题是我找不到发送买家姓名和电子邮件地址的方法,因此 Paymill 客户端不完整。此外,我希望能够使用活跃商家创建 Paymill 订阅。这可能吗?

我知道有一个 Javascript 版本的支付系统,它可以工作。问题是我不想使用 Javascript,只有 ruby​​。

我使用了本指南:如何使用 Ruby 通过 Paymill 进行付款

感谢所有帮助!

4

2 回答 2

1

Please, do NOT use Active Merchant if you don't have the proper PCI certifications. The Javascript version is the only way to use our service and profiting from our PCI compliance.

That being said, please take a look at the following paymill-ruby-wrapper, which has been provided by a third party developer - maybe it serves your purpose: https://github.com/dkd/paymill-ruby

Best regards, Julian

(disclaimer: I work at PAYMILL)

于 2013-06-04T17:09:32.240 回答
0

Julian 是对的,除非您拥有适当的 PCI 认证,否则您不应该使用 ActiveMerchant。看来你想做这样的事情:

1) 创建一个客户端对象,将名称(描述)和电子邮件作为参数传递。看到这个:https ://www.paymill.com/de-de/dokumentation/referenz/api-referenz/#create-new-client

2) 创建支付方式对象,将客户端作为参数传递(以及 JavaScript 桥检索的令牌):https ://www.paymill.com/de-de/dokumentation/referenz/api-referenz/#create-new -信用卡支付方式

3)进行新的交易,传递支付方式对象:https ://www.paymill.com/de-de/dokumentation/referenz/api-referenz/#create-new-transaction-with

要创建订阅,您需要有一个优惠对象和一个具有有效付款方式的客户:https ://www.paymill.com/de-de/dokumentation/referenz/api-referenz/#create-new-subscription

于 2013-06-11T17:24:55.573 回答