Stripe 订阅附加组件和功能
Stripe subscription add-on's & features
现在我的站点有 3 种订阅类型:
- 初学者(10 美元)
- 加上(15 美元)
- 高级版(19 美元)
我也有一些附加组件可供用户添加到他的订阅中,例如:
订阅:加
- +特征 1(+10 $)
- +特征 2(+10 $)
总计 = 15$ + 10$ + 10$ = 35$。
用户应该能够 add/remove 在他的计费周期内使用功能或切换到另一个计划。
你们能告诉我应该如何使用 Stripe 管理这些功能吗?
Stripe 本身不支持附加组件。有许多第三方工具在 Stripe 之上添加了此功能,如果您正在处理按比例分配的复杂升级和降级,这会很有用。
仅使用 Stripe,标准做法是使用计划(Starter、Plus、Premium)创建订阅,然后每月监听 invoice.created webhook 以添加必要的附加组件。
我知道这是一个旧的 link 但是如何将每个插件设置为单独的订阅。
一个用户可以附加多个订阅。 https://stripe.com/docs/subscriptions/multiple-subscriptions.
2017 年 1 月 30 日 Stripe 通过支持 multiple plans for a single subscription 发布了此功能。
Unlike our multiple subscriptions on a customer capability, which
generates an invoice for each subscription, putting multiple plans
into a single subscription results in a single invoice each billing
period that combines every subscription. Only a single payment for
that invoice is required, reducing your costs and the number of
charges your customer sees.
现在我的站点有 3 种订阅类型:
- 初学者(10 美元)
- 加上(15 美元)
- 高级版(19 美元)
我也有一些附加组件可供用户添加到他的订阅中,例如:
订阅:加
- +特征 1(+10 $)
- +特征 2(+10 $)
总计 = 15$ + 10$ + 10$ = 35$。
用户应该能够 add/remove 在他的计费周期内使用功能或切换到另一个计划。 你们能告诉我应该如何使用 Stripe 管理这些功能吗?
Stripe 本身不支持附加组件。有许多第三方工具在 Stripe 之上添加了此功能,如果您正在处理按比例分配的复杂升级和降级,这会很有用。
仅使用 Stripe,标准做法是使用计划(Starter、Plus、Premium)创建订阅,然后每月监听 invoice.created webhook 以添加必要的附加组件。
我知道这是一个旧的 link 但是如何将每个插件设置为单独的订阅。
一个用户可以附加多个订阅。 https://stripe.com/docs/subscriptions/multiple-subscriptions.
2017 年 1 月 30 日 Stripe 通过支持 multiple plans for a single subscription 发布了此功能。
Unlike our multiple subscriptions on a customer capability, which generates an invoice for each subscription, putting multiple plans into a single subscription results in a single invoice each billing period that combines every subscription. Only a single payment for that invoice is required, reducing your costs and the number of charges your customer sees.