Reputation: 414
i am working on a RN app, where i need to open open UPI apps for collecting money. PhonePe, Google Pay, Paytm work just fine, i am struggling with amazonpay. i have tried a few example mentioned below it opens amazon app but not amazon pay screen
amazonToAlipay://upi/pay?pa=your@vpa&pn=YourName&tn=Note&am=1&cu=INR
amazonToAlipay://pay?pa=your@vpa&pn=YourName&tn=Note&am=1&cu=INR
Upvotes: 0
Views: 1099
Reputation: 1
For integrating Amazon Pay with UPI in your React Native app, you can use the following deep link format:
amazonpay://upi/pay?pa=your@vpa&pn=YourName&tn=Note&am=1&cu=INR
Make sure to replace your@vpa
with the actual Virtual Payment Address, YourName
with the name you want to display, Note
with any transaction note, and adjust the amount (am
) and currency (cu
) as needed.
Upvotes: 0