jaredhanson/passport-twitter

Possible to get `referer` header?

cbosco opened this issue · 1 comments

Hi, I have a qusetion about successful callback.

I'd like to do something like this:

app.get('/auth/twitter/callback', passport.authenticate('twitter'), (req, res) => {
  res.redirect(req.header('referer') || '/');
});

Which works with the facebook passport strategy but it seems as though Twitter strips this header. Do you happen to know if that's just how Twitter oauth behaves? Or is there a way to configure this strategy to do this?

Thanks

only over session