Open lludol opened 8 years ago
I have found a solution:
server.on('InvalidCredentials', (req, res, error, next) => {
error.body.code = 'Unauthorized';
error.body.message = 'Your custom message';
return next();
});
I don't think this is the best solution but it works...
@lludol @amrav Can we PR this (provided the above is the appropriate solution)?
Hello,
In the doc of your plugin, it's written that we can add our custom logic to manage unauthorized access.
With this code:
But, if we read the doc of restify, the callback will receive only 3 parameters : req, res and next. (source: http://restify.com/#common-handlers-serveruse) I have tested with 4 parameters but the function only receive 3 parameters...
In my application, I am using your module only for route that need to be protected, like this:
Did I miss something?