首页 > 解决方案 > 您已超出此付款的银行限额,请以较小的金额重试 - Google pay in ionic

问题描述

我遇到了谷歌支付的问题。我通过 webintent npm 设置谷歌支付。当我使用 hia google pay UPI id 将钱转给另一个人时,我收到了这个错误

您已超出此付款的银行限额,请以较小的金额重试。

const options = {
    action: this.webIntent.ACTION_VIEW,
    url: 'upi://pay?pa=123@okthis&pn=Food For Life &tid=esdsdfs&mc=&tr=25584584&am='+this.amount+'&cu=INR&tn=Donation Payment',
}

this.webIntent.startActivity(options).then(
    onSuccess => {
        console.log('onSuccess',onSuccess);
        
        alert('payment done');
    }
    , onError => {
        console.log('onError',onError);
    });

标签: ionic-frameworkgoogle-paywebintents

解决方案


推荐阅读