我正在尝试使用订阅API在我的应用程序中实现条带支付网关。
用于测试订阅
常见的需求是测试集成如何处理试用期 无需等待完整的试用期即可看到结果。有个 这里的快速解决方案:使用trial_end值创建新订阅 将来只有几分钟。
为了做到这一点,我将trial_end
的时间戳设置为5分钟
例如:
stripe.subscriptions.create({
customer:customer.id,
billing:'charge_automatically',
items: [{plan: req.stripePlanId}],
trial_end:Math.floor(new Date().getTime() / 1000)+300
})
但是webhook事件charge.succeeded
没有触发