upi

UPI Deeplinking from IONIC to GooglePay does not work as expected

旧城冷巷雨未停 提交于 2019-12-23 05:10:16
问题 We have developed an IONIC based mobile app to perform In-App payment using UPI. It uses IONIC Native Web Intent plugin. a. b. "@ionic-native/web-intent": "^4.14.0", This is shim layer for the Android intent mechanism and makes web intent call to BHIM/PhonePe/GooglePay It works well with all UPI apps like BHIM, PhonePe. But does not work with GooglePay, For some reason with same code , Google Pay returns NULL Intent to OnActivityResult() even though the UPI Payment is successful. I wrote

UPI deep link issue with android app integration

≯℡__Kan透↙ 提交于 2019-12-21 06:44:56
问题 I am using native code for upi deep linking. When intent invoke on bhim app payment details page in not showing while other psp app redirecting to payment page When I click a url from mobile browser like this upi://pay?pa=98955012345@upi&pn=abc&am=1 it opens BHIM app with pre-filled page of payee details. However when I use my merchant app, to link it through intent deep-linking, it opens BHIM but does not redirect to pre-filled page. 回答1: It really works for the BHIM application also. Use

UPI deep link issue with android app integration

南笙酒味 提交于 2019-12-21 06:44:46
问题 I am using native code for upi deep linking. When intent invoke on bhim app payment details page in not showing while other psp app redirecting to payment page When I click a url from mobile browser like this upi://pay?pa=98955012345@upi&pn=abc&am=1 it opens BHIM app with pre-filled page of payee details. However when I use my merchant app, to link it through intent deep-linking, it opens BHIM but does not redirect to pre-filled page. 回答1: It really works for the BHIM application also. Use

Invoke PSP app with UPI url

纵饮孤独 提交于 2019-12-12 08:08:29
问题 I am trying to create a merchant app which will generate a url based on NPCI's guidelines. This url will be shared as intent and the PSP app (Any registered bank app) should be able to listen to that url and get invoked. I have formed a url like this:- upi://pay?pa=icici/name&pn=USER_NAME&tid=422d97c1-f0fc-4bea-b24a-511ffa85e86f&am=442.87&tn=Test%transaction Now I am sending the intent like this :- Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra

How to integrate BHIM app payment gateway in an Android App?

我怕爱的太早我们不能终老 提交于 2019-12-04 12:33:13
问题 How to integrate BHIM app payment gateway in an android app, through upi id? I have no idea about payment gateway,I have not implemented payment gateway before. Please help me how to integrate payment gateway in an android app?(I want to integrate payment through BHIM app) 回答1: You can try DeepLinking UPI supported application. This way you can make a payment via any UPI supported application (BHIM, Phonepe, Paytm and all bank UPI apps) Code for deeplinking is as follow: Uri uri = Uri.parse(

UPI deep link issue with android app integration

被刻印的时光 ゝ 提交于 2019-12-03 21:50:38
I am using native code for upi deep linking. When intent invoke on bhim app payment details page in not showing while other psp app redirecting to payment page When I click a url from mobile browser like this upi://pay?pa=98955012345@upi&pn=abc&am=1 it opens BHIM app with pre-filled page of payee details. However when I use my merchant app, to link it through intent deep-linking, it opens BHIM but does not redirect to pre-filled page. It really works for the BHIM application also. Use this Code it works like a charm for every PSP enabled applications. Note: Instead of using the "%" better to

Invoke PSP app with UPI url

时光毁灭记忆、已成空白 提交于 2019-12-03 15:05:31
I am trying to create a merchant app which will generate a url based on NPCI's guidelines. This url will be shared as intent and the PSP app (Any registered bank app) should be able to listen to that url and get invoked. I have formed a url like this:- upi://pay?pa=icici/name&pn=USER_NAME&tid=422d97c1-f0fc-4bea-b24a-511ffa85e86f&am=442.87&tn=Test%transaction Now I am sending the intent like this :- Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, UPI); sendIntent.setType("text/plain"); startActivity(sendIntent); Icici bank app

UPI App Deep linking using Intent - inconsistent and buggy behavior

喜欢而已 提交于 2019-11-30 04:04:52
I have deeplinked UPI apps from my android native app using intent. I have tested this with various UPI apps like BHIM, PhonePe, AXIS, UnionBank, Pockets etc. I created push payment URI. I am able to launch various UPI apps. However behaviour is quite inconsistent. "upi://pay?pa=xxxxx@upi&pn=payee&am=5.00&tn=Test_Transaction" Most apps are responding when intent is onvoked. They get launched. few apps displayed the payment page correctly with amount. Rest apps did not display the page at all. PhonePe, Axis displayed. BHIM did not display payment page Payment completed successfully b y PhonePay

UPI App Deep linking using Intent - inconsistent and buggy behavior

。_饼干妹妹 提交于 2019-11-29 01:49:35
问题 I have deeplinked UPI apps from my android native app using intent. I have tested this with various UPI apps like BHIM, PhonePe, AXIS, UnionBank, Pockets etc. I created push payment URI. I am able to launch various UPI apps. However behaviour is quite inconsistent. "upi://pay?pa=xxxxx@upi&pn=payee&am=5.00&tn=Test_Transaction" Most apps are responding when intent is onvoked. They get launched. few apps displayed the payment page correctly with amount. Rest apps did not display the page at all.