【发布时间】:2017-07-23 19:53:25
【问题描述】:
我正在尝试将 Sepa 付款方式与 woocommerce 商店集成。
在测试模式下,当我尝试使用 sepa debit 类型创建源时, 它给了我以下错误。我使用的代码如下,与documentation中的代码相同。
Stripe.source.create({
type: 'sepa_debit',
sepa_debit: {
iban: 'DE89370400440532013000',
},
currency: 'eur',
owner: {
name: 'Jenny Rosen',
address: {
line1: 'Nollendorfstraße 27',
city: 'Berlin',
postal_code: '10777',
country: 'DE',
},
},
}, function(status,response){
console.log(status);
console.log(response);
});
据此帖here:
欧洲的 Stripe 用户可以在封闭预览中使用 SEPA 直接借记付款。为了激活 SEPA 直接借记,您需要通过 Stripe 仪表板请求邀请。
但是,我无法在我的 Stripe Dashboard 中找到可以请求 Sepa Debit 邀请的位置。
我在印度,所以我需要有一个不同的条带帐户吗?还是我错过了什么?
【问题讨论】:
-
我们刚刚在 Stripe 中激活了 SEPA 直接借记付款:dashboard.stripe.com/account/payments/settingsWhere to activate Stripe SEPA Direct Debit functionality 我们在几分钟内就激活了它。
标签: wordpress stripe-payments payment-gateway stripe.js