diff --git a/node/server.js b/node/server.js index 09b51d5f..201e0659 100644 --- a/node/server.js +++ b/node/server.js @@ -290,6 +290,11 @@ async.waterfall([ { response = JSON.stringify(response); apiLogger.info("RESPONSE, " + req.params.func + ", " + response); + + //is this a jsonp call, if yes, add the function call + if(req.query.jsonp) + response = req.query.jsonp + "(" + response + ")"; + res._send(response); }