How to parse/read multiple parameters with restify framework for Node.JS

Amol M Kulkarni picture Amol M Kulkarni · Apr 5, 2013 · Viewed 25.8k times · Source

Scenario: We developer are trying to replace a web service (written in C#.Net) with Node.JS Restful API.

Issue: Now we need to handle the incoming request as is (we don't have control over it). So the following is the format of the incoming URL:

http://www.website.com/Service.aspx?UID=Trans001&FacebookID=ae67ea324&GetDetailType=FULL

I am able to handle the URL like:

http://www.website.com/service/Trans001/ae67ea324/FULL

I can parse/read the parameter from the above URL

Code:

var server = require('restify').createServer();
function respond(req, res, next) {
    console.log("req.params.UID:" + req.params.UID);
    console.log("req.params.FacebookID:" + req.params.FacebookID);
    console.log("req.params.GetDetailType" + req.params.GetDetailType);
}
server.get('/service/:UID/:FacebookID/:GetDetailType', respond);
server.listen(8080, function () {
    console.log('%s listening at %s', server.name, server.url);
});

Question: How can I read the multiple parameters from the URL which is formatted like http://www.website.com/Service.aspx?UID=Trans001&FacebookID=ae67ea324

Answer

Simon picture Simon · May 7, 2013

You just need to load the query parser plugin like so;

server.use(restify.plugins.queryParser());