Hi
My Windows Azure NodeJS AppService can not get parameter from req.body. I am using Express 4.17 with body-parser. Every time I post a request with body data (example: {"uid":"12345"}) with server-side code
router.post('/abc', function (req, res) {
var uid = req.body.uid;
});
This code worked normally on local but in Windows Azure NodeJS AppService, uid is always Undefined or Null
How can I fix this problem ? Thank you very much.