0.0.3 • Published 10 years ago

ym_http_notice v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

Accept payments online via Yandex

docs: https://money.yandex.ru/doc.xml?id=527069

Installation

$ npm i ym_http_notice

Example

var ym_http_notice = require("./ym_http_notice");

// ... get express instance somehow

app.post("/payment",
	ym_http_notice(global.secret, checkOrder, paymentAviso)
);

function checkOrder (body, recall){
    // body contains all parsed fields from request(e.g. shopId, customerNumber, etc)
    // do some stuff with body and then
    recall(null, false);
    // or recall(err); if error (with or without message and techMessage)
}

function paymentAviso (body, recall){
    // The same
	recall(null, true);
}

License

MIT

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago