L
L
likejavascript2014-10-23 08:17:23
Payment systems
likejavascript, 2014-10-23 08:17:23

Is it adequate to use nodejs server to accept payments?

I want to monetize a nodejs application (payment for using the service by subscription). I have never done anything like this before and I still don’t know which payment system to choose. But the question is a little different.
Looking through the API of various payment systems, I did not see any examples for nodejs. I was interested in the question of the expediency of nodejs for interacting with the API of payment services.
Share your experience who implemented interaction with payment services through a node and what pitfalls did you catch?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
Y
Yuri Popov, 2014-10-23
@DjPhoeniX

Used to receive votes from VK. Most gateways use just POST requests, and they are deeply violet what is happening there on the backend - their job is to make sure that
1. You accepted the payment (you need to give the correct answer)
2. You accepted the payment (the answer must be somehow signed - at most of them are MD5 parameters + secret key)
Actually, with sane documentation, examples are far from mandatory.

B
Boniface, 2014-10-23
@Boniface

I am using Yandex Money API and node.js backend. Everything works great!
If I'm not mistaken, PayPal was rewritten from Java to node.js.
Node.js will do just fine for you.

A
Alexander Kaloshin, 2014-10-28
@undassa

I support. We write only on node.
In most modern payment systems, the available API, and the large node community, has already written all kinds of modules for them. So use safely, but check.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question