Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Passport.js 提供了一个方法 req.login,req 是对服务器的请求。
是否可以在不向客户端发出请求的情况下在服务器端实现自动登录?
我假设您的意思是如果用户之前已通过身份验证,则无需用户进行显式登录。鉴于您已在快速设置中添加了护照中间件:
app.use(passport.initialize()); app.use(passport.session());
它将检查客户端是否已经拥有passportcookie 并自动将他重定向到他通常会成功进行身份验证的任何地方。
passport