【发布时间】:2019-04-30 00:34:21
【问题描述】:
我正在开展一个订阅者可以按月限制订阅的项目。
以下示例
Lets say i have 5 products A - Euro 40 ,B - Euro 40, C - Euro 40, D- Euro 40,E - Euro 40
Month 1 - A + B + C + D -> First order. I am using stripe ideal to generate the payment for 4 products. Total Euro 160
Month 2 - Subscriber cancels product D subscription. So now the recursive payment must work only for the price of A+B+C. So now the total comes Euro 120
Month 3 - Subscriber cancels product C subscription. So now the recursive payment must work only for the price of A+B. So now the total comes Euro 80
Month 4 - Subscriber cancels product A + B subscription. So the subscription should be cancelled.
到目前为止完成的工作:
条纹理想是一次性付款。在这种情况下,我可以使用 SEPA,但会在 14-16 个工作日内获得更新。 https://stripe.com/docs/sources/ideal/recurring
我正在使用 wordpress 并使用 Stripe PHP 库以编程方式(不使用插件)启动理想的付款方式。
iDEAL 有什么选择?
是否可以,如果我收集客户的卡详细信息并在未经用户授权的情况下定期向卡收费。
希望我把我的问题说清楚了。
【问题讨论】:
标签: php stripe-payments