@togtokh.dev/socialpay
v0.0.7
Published
SOCIAL_PAY is a library for qpay payment gateway. It is a wrapper for axios and https module. It is a simple and easy-to-use library for SOCIAL_PAY payment gateway. It is a wrapper for axios and https module. It is a simple and easy-to-use library for SOC
Downloads
5
Maintainers
Readme
SOCIAL_PAY
Example
import SOCIAL_PAY from "@togtokh.dev/SOCIAL_PAY";
SOCIAL_PAY.auth
.TOKEN(
""
)
.then(async (r) => {
const res = await SOCIAL_PAY.invoice.CREATE({
callback: "http://www.google.com",
amount: 4,
genToken: "Y",
socialDeeplink: "Y",
});
console.log("res", res);
})
.catch((e) => {
console.log(e);
});