React-native Stripe Payment Sheet with Subscription

mwkjh3gx  于 2023-10-22  发布在  React
关注(0)|答案(1)|浏览(137)

我使用stripe-react-native来处理付款,我能够通过使用PaymentIntent流的付款单处理一次性付款。
现在我坚持创建订阅使用相同的付款单流,有人尝试过吗?或者建议如何在订阅中使用PaymentIntent

8wtpewkr

8wtpewkr1#

您需要展开具有付款意图的订阅对象。

const subscription = await stripe.subscriptions.create({
  ...subscriptionSettings
  expand: ['latest_invoice.payment_intent']
});

然后,您可以使用以下命令访问它:

const paymentIntent = subscription.latest_invoice.payment_intent
const clientSecret = subscription.latest_invoice.payment_intent.client_secret

相关问题