UPI付款方式不正确,已超过最大限额

问题描述

我正在尝试实现UPI意图,但是每当我付款时,它都表示Google支付(在电话pe中)超出了最大限额,这是由于安全问题而显示,您不能使用此银行帐户付款。请帮帮我。这是我的代码

                    Uri UPI = Uri.parse("upi://pay").buildUpon()
                            .appendQueryParameter("pa","") //rList.get(i).upi_id
                            .appendQueryParameter("pn","") //rList.get(i).username
                            .appendQueryParameter("tn","TEST") //rList.get(i).paylist_name
                            .appendQueryParameter("tr",""+StaticValues.transactionId)
                            .appendQueryParameter("tid",""+StaticValues.transactionId)
                            .appendQueryParameter("am",""+rList.get(i).payble_amount)
                            .appendQueryParameter("cu","INR")
                            //.appendQueryParameter("orgid","000000")
                            //.appendQueryParameter("mode","04")
                            .build();
                    Intent intent = new Intent();
                    intent.setAction(Intent.ACTION_VIEW);
                    intent.setData(UPI);
                    Intent chooser = Intent.createChooser(intent,"Pay with...");
                    startActivityForResult(chooser,1);

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)