Answer the question
In order to leave comments, you need to log in
How to send a POST request with nodejs?
There is nodejs + express. From it you need to make a POST request to a third-party API and get a response from there. How to do it?
Answer the question
In order to leave comments, you need to log in
https://www.npmjs.com/package/request
request.post({url:'http://service.com/upload', form: {key:'value'}}, function(err,httpResponse,body){ /* ... */ })
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question