M
M
Markiv072021-03-05 01:06:38
Node.js
Markiv07, 2021-03-05 01:06:38

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
}


And where to go, I can’t understand, I didn’t find it in the documentation ((

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question