微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

印度的条带支付问题 - 非 inr 交易应该在印度境外有送货/账单地址

如何解决印度的条带支付问题 - 非 inr 交易应该在印度境外有送货/账单地址

enter image description here

嗨,我在我的开发应用程序中集成了条带支付,

1)我选择印度以外的国家付款成功,

2)当我选择印度时出现错误

在印度的非 inr 交易应该在印度境外有送货/帐单地址。更多信息:

我已经添加了我的条带重定向代码

const handlePaymentView = async (data = {}) => {
        const stripe = await window.Stripe('pk_test_xyz');
        stripe.redirecttocheckout({
            billingAddressCollection: "required",customerEmail: "test@gmail.com",items: [
                {
                    plan: planNameFindUrl(data),quantity: 1
                }
            ],successUrl: 'http://localhost:3000/setting',cancelUrl: 'http://localhost:3000/setting',}).then(function (result) {
            console.log(result,"result");
        }).catch(function (error) {
            console.log(error,"errorerror");
        });
    };

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。