Answer the question
In order to leave comments, you need to log in
Where to apply when issuing a qiwi invoice?
In general, there is a PUT request, here is the code
app.put('/куда обращаться?/' ,async function (req,res,next) { // restrict it to the required domain
const data = await qiwi(); // получаем в data результат вызова qiwiApi.createBill
console.log(data);
let p = res.json(data);
next(); // т.к. функция асинхронная, вызываем next, чтобы объявить о завершении выполнения этого middleware
});
async function qiwi() {
const billId = qiwiApi.generateId();
const fields = {
amount: 1.00,
currency: 'RUB',
comment: 'test',
expirationDateTime: '2022-03-02T08:44:07',
successUrl: 'http://test.ru/'
};
const data = await qiwiApi.createBill( billId, fields );
console.log(data);
// тут делаем что-то еще, если нужно
return data; // возвращаем результат вызова qiwiApi.createBill
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question