Stripe Checkout 是否支持免费计划?
Does Stripe Checkout Support Free Plans?
我们正在评估使用 Stripe Checkout, and it seems that it always requires credit card info from the user (we don't want Stripe to require credit card info on its page). We want to provide a free trial, when it ends, we will ask for the credit card info. I've seen 向计划添加免费的 $0 项目,Stripe 不支持。
有什么方法可以让用户 select 付费计划(例如 20 美元/月 - 2 周试用期)并转到不要求信用卡信息的结帐页面,然后订阅和计划是已创建?
使用 Stripe Checkout,您可以创建包含免费试用的订阅 [1]。但是,当客户订阅试用版时,Checkout 会预先收集付款方式。使用 Checkout 时,目前没有任何选项可以让客户无需先提供有效的付款方式即可订阅免费试用版。
相反,您可以使用更自定义的 Stripe 集成来执行您正在描述的流程,您可以在其中执行以下操作:
- 订阅客户免费试用:https://stripe.com/docs/billing/subscriptions/trials
- 如果客户在试用后选择继续,请收集他们的付款明细:https://stripe.com/docs/payments/save-and-reuse
请注意,您仍然可以在第 2 步中使用 Stripe Checkout,在这种情况下,您只需要手动创建订阅即可。
我们正在评估使用 Stripe Checkout, and it seems that it always requires credit card info from the user (we don't want Stripe to require credit card info on its page). We want to provide a free trial, when it ends, we will ask for the credit card info. I've seen
有什么方法可以让用户 select 付费计划(例如 20 美元/月 - 2 周试用期)并转到不要求信用卡信息的结帐页面,然后订阅和计划是已创建?
使用 Stripe Checkout,您可以创建包含免费试用的订阅 [1]。但是,当客户订阅试用版时,Checkout 会预先收集付款方式。使用 Checkout 时,目前没有任何选项可以让客户无需先提供有效的付款方式即可订阅免费试用版。
相反,您可以使用更自定义的 Stripe 集成来执行您正在描述的流程,您可以在其中执行以下操作:
- 订阅客户免费试用:https://stripe.com/docs/billing/subscriptions/trials
- 如果客户在试用后选择继续,请收集他们的付款明细:https://stripe.com/docs/payments/save-and-reuse
请注意,您仍然可以在第 2 步中使用 Stripe Checkout,在这种情况下,您只需要手动创建订阅即可。