support jsonp api calls
parent
84f1baf972
commit
b58bdb4e4d
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue