Skip to content

webtaculars/react-native-upi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-upi

A react native module for handling payment through UPI and handling response from the UPI app.

Getting started

$ npm i react-native-upi --save

$ react-native link react-native-upi

Usage

import UPIModule from "react-native-upi";

const transactionId = "transactionId";
const message = `message`;
const payTo = "9XXXXXXXXX@upi";
const payName = "Name";
const amount = XXX;

UPIModule.openUPIClient(
  `upi://pay?pa=${payTo}&pn=${payName}&tr=${transactionId}&tn=${message}&am={amount}`
)
  .then(res => {
    if (res !== null) {
      let result = {};
      let response = res.split("&").forEach(property => {
        let temp = property.split("=");
        result[temp[0]] = temp[1];
      });
      return result;
    }
  })
  .then(res => {
    console.log(res);
  });

UPI Guidelines

To learn more about deep linking in UPI, checkout NPCI Guidelines

About

A react native module for handling payment through UPI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published