Skip to content

How to access req.host in passport.js? #3

@jetsonjohn

Description

@jetsonjohn

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions