我使用Google登录护照,我想将用户注销,但之后将它们带回我的应用程序。我正在寻找以下内容,但在进入Google注销后,我的应用不会转到第二个重定向链接。有没有办法做到这一点?
用于注销的护照方法(req.session.logout()),除非我退出浏览器,否则似乎没有实际注销用户。转到Google注销链接似乎可以确保注销,这就是我使用该链接的原因。
// route for logging out
router.get('/logout', function(req, res) {
res.redirect('https://accounts.google.com/logout');
res.redirect('https://myapp.com'); //Doesn't run this
});