如何让我的客户 select 使用 Stripe Billing Portal 计划?
How can I let my customer select a plan with the Stripe Billing Portal?
这是我的客户在我重定向到门户时看到的内容。但我希望他们能够 select 自己制定计划并添加付款方式。
我就是这样得到 URL:
const session = await stripe.billingPortal.sessions.create({
customer: req.body.stripeCustomerId,
return_url: 'http://localhost:3000/app',
});
我希望用户能够 select 一个计划,我有一个 Product
:
据我所知,BillingPortal 不支持订阅 new Prices/Plans。仅支持切换Prices/Plans(如降级或升级)或更新购买数量:https://stripe.com/docs/billing/subscriptions/customer-portal
您必须使用 Stripe Checkout 让您的用户开始订阅,然后利用 BillingPortal 允许他们切换价格。
这是我的客户在我重定向到门户时看到的内容。但我希望他们能够 select 自己制定计划并添加付款方式。
我就是这样得到 URL:
const session = await stripe.billingPortal.sessions.create({
customer: req.body.stripeCustomerId,
return_url: 'http://localhost:3000/app',
});
我希望用户能够 select 一个计划,我有一个 Product
:
据我所知,BillingPortal 不支持订阅 new Prices/Plans。仅支持切换Prices/Plans(如降级或升级)或更新购买数量:https://stripe.com/docs/billing/subscriptions/customer-portal
您必须使用 Stripe Checkout 让您的用户开始订阅,然后利用 BillingPortal 允许他们切换价格。