how to send post request from postman in request body code example
Example 1: express js post request body
const express = require('express')
const app = express()
app.use(express.json()) // for parsing application/json
app.use(express.urlencoded({ extended: true })) // for parsing application/x-www-form-urlencoded
app.post('/profile', function (req, res, next) {
console.log(req.body)
res.json(req.body)
})
Example 2: send post request postman
{
"title" : "test title",
"singer" : "some singer"
}