ReactJS + Stripe: Testtage funktionieren nicht wie erwartet
P粉773659687
P粉773659687 2024-04-01 14:55:33
0
1
449

Trial_period_days: 7 scheint in meinen Knotenfunktionen nicht erkannt zu werden. Irgendeine Idee, warum das passiert? Fehlt mir eine Variable? Eine Veröffentlichung bis zu diesem Punkt führt zu Integrationsfehlern...

const subscription = await stripe.subscriptions.create({
                customer: customer.id,
                items: [{ price: "price_1KZ3nTGxUje7SlyIDUfIXkr3" }],
                payment_settings: {
                  payment_method_options: {
                    card: {
                      request_three_d_secure: "any",
                    },
                  },
                  payment_method_types: ["card"],
                  save_default_payment_method: "on_subscription",
                },
                trial_period_days: 7,
                expand: ["latest_invoice.payment_intent"],
              });

P粉773659687
P粉773659687

Antworte allen(1)
P粉492959599

当您创建包含试用版或 100% 优惠券的订阅时,无需立即支付发票。因此,没有 PaymentIntent,也没有 client_secret。这就是您的 PaymentIntent 确认失败的原因。相反,订阅会创建一个SetupIntent来收集将来使用的付款方式。您可以通过 pending_setup_intent.client_secret 属性 访问SetupIntent的客户端密钥(创建订阅时,您需要扩展 pending_setup_intent 属性)。然后,您需要在前端确认SetupIntent。要更好地了解 SetupIntents 的工作原理,您可以遵循以下指南:https:// stripe.com/docs/ payments/save-and-reuse?platform=web

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage