-
Notifications
You must be signed in to change notification settings - Fork 55
Open
Description
I am using passportjs library for authenticating the user with api key. What I am trying to do is that along with api key. I also want to check the host name of the request.
app.post('/api/authenticate',
passport.authenticate('localapikey'),
function(req, res) {
console.log('Authenticated');
}); I don't know how passportjs calling the below function. But it definitely calling the function after a post request is coming to the path '/api/authenticate'. I also want to access the req.host in the below function.
passport.use(new LocalStrategy(
function(apikey, done) {
console.log(req.host);
}Is it possible? Any insight into this would highly be appreciated. Thank you
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels