3

我有一个网站,用户可以10USD每月订阅一个包含数字商品的月包。每次订阅的 90% 归内容所有者所有;每次订阅的 10% 归网站所有者所有(金额正在拆分)。我想自动化这个过程。

需要提及的是,我的网站是使用 Ruby on Rails 3 构建的。我已经看过 fnando/paypal-recurringtc/paypal_adaptivejpablobr/active_paypal_adaptive_payment等gem,但没有一个特别的 gem 可以帮助我解决我的问题。

有什么想法吗?有没有有用的宝石可以解决这个问题?还是网络服务?

更新(2012 年 6 月 5 日 17:24):

我尝试使用 Adaptive Payments 解决问题,但订阅时间限制为一年;另一方面,定期付款不支持拆分金额。

4

2 回答 2

2

PayPal Adaptive Chained and preapproved payments would have been one way. Another option is to create a normal PayPal recurring payment via Express Checkout Recurring Payments, and then use the MassPay API to send 90% to the content owner, and 10% to the website owner.
The only downside on this solution, is that they are 2 separate transactions, and you will pay fees 2 times.

Did you already check with PayPal whether they are willing to extend the 1-year term for preapproved payments?

于 2012-06-08T00:03:04.113 回答
1

你检查过条纹吗?

他们不支持订阅拆分,但他们确实在其常见问题解答中描述了如何在市场上接受付款,请参阅Stripe 是否支持代表其他用户(如市场)接受付款的企业?https://stripe.com/help/faq

话虽这么说,似乎最简单的方法是接受订阅付款,然后编写应用程序的管理部分,该部分会降低 10% 的价格并从您的企业银行账户中打印出支票,然后每月发送出去。

您可能想要签出的另一个 ruby​​ 库是 ActiveMerchant。http://activemerchant.org

于 2012-06-05T15:41:53.737 回答