首页 > 解决方案 > Stripe React Native:商家显示名称不能为空字符串

问题描述

我正在尝试在我的 React Native 应用程序中实现 Stripe React Native SDK,但是当我向用户展示付款单时出现错误。

我按照条纹网站上的教程(https://stripe.com/docs/payments/accept-a-payment?platform=react-native)但我不断收到以下错误:

{"code": "Failed", "declineCode": null, "localizedMessage": "When a Configuration is passed to
PaymentSheet, the Merchant display name cannot be an empty string.", "message": "When a
Configuration is passed to PaymentSheet, the Merchant display name cannot be an empty string.",
"stripeErrorCode": null, "type": null}

我没有找到任何讨论这个问题的论坛。

先感谢您

标签: reactjsreact-nativestripe-payments

解决方案


我遇到了同样的错误。重新检查文档后,我发现初始化条带付款表时缺少“merchantDisplayName”参数。

const {error} = await initPaymentSheet({
  paymentIntentClientSecret: client_secret,
  googlePay: true,
  merchantDisplayName: 'Merchant Name',
});

推荐阅读