Guest User

Untitled

a guest
Oct 4th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. app.post("/someUrl/:categoryId/:someName", function(req, res) {
  2. // Request to /someUrl/12/gary?username=ganesh&password=shouldnotbehere
  3. res.send(200).send({result: 'Query params as object', queryParams: req.query});
  4. });
Add Comment
Please, Sign In to add comment