I get the data at the web hosting URL as a POST request. Please note the content type of this request application/x-www-form-urlencoded.
This is a server to server request. And on my Node server, I just tried to read the received data using req.body.parameters, but the resulting values are "undefined" ?
So how can I read data request data? Do I need to analyze the data? Do I need to install any npm module? Can you write a piece of code explaining this case?
source
share