I'm receiving data on a webhook URL as a POST request. Note that the content type of this request is application/x-www-form-urlencoded
.
It's a server-to-server request. And On my Node server, I simply tried to read the received data by using req.body.parameters
but resulting values are "undefined"?
So how can I read the data request data? Do I need to parse the data? Do I need to install any npm module? Can you write a code snippet explaining the case?