payeer-node
Payeer payment gateway API for Node.js
Installation
npm install payeer-node
Examples
- Generate payment page url:
const payeer = shopId: processenvPAYEER_SHOP_ID secretKey: processenvPAYEER_SECRET_KEY callbackUrls: success_url: 'https://test.com/success' fail_url: 'https://test.com/fail' status_url: 'https://test.com/status' ; const orderId = '12345';const url = payeer;
- Process Payeer webhook:
const callback = payeer; ;;
Please refer tests for details.
Contribution
git clone
npm install
npm test