I am using node js with express framework, restful api. I want to post values using 'form-data' option in postman addon.
I am able to post values using the x-www-form-urlencoded
option and am able to get values like req.body.username
, req.body.email
, etc. This is working fine, but I need 'form-data' option also.
If I use "form-data" option then I am not able to get the post values please help me how to get values using this option 'form-data' in postman addon.