Google Oauth2 登录后将 JWT 传递给 UI 应用程序

问题描述

我创建了一个具有独立后端和前端的 MERN 应用程序。我使用 passport-google-oauth20 npm 包添加了对 Google Oauth2 登录支持

所以我在后端暴露了一个端点,如下所示:

class AccountAPIs {
    constructor() { }

    redirectToSuccess(req,res) {
        const accountServiceInst = AccountService.getInst();
        let account = req.session.passport.user;
        let filePath = path.join(__dirname + '../../../public/views/loginSuccess.html');
        let jwt = accountServiceInst.generateJWT(account);
        // how do I send this jwt to ui application
        res.sendFile(filePath);
    }

    loadMappings() {
        return {
            '/api/auth': {
                '/google': {
                    get: {
                        callbacks: [
                            passport.authenticate('google',{ scope: ['profile','email'] })
                        ]
                    },'/callback': {
                        get: {
                            callbacks: [
                                passport.authenticate('google',{ failureRedirect: '/api/auth/google/Failed' }),this.redirectToSuccess
                            ]
                        }
                    },'/success': {
                        get: {
                            callbacks: [this.successfulLogin]
                        }
                    }
                }
            }
        };
    }
}

以下是护照设置供参考:

let verifyCallback = (accesstoken,refreshToken,profile,done) => {
    const accountServiceInst = AccountService.getInst();
    return accountServiceInst.findOrCreate(profile)
        .then(account => {
            return done(null,account);
        })
        .catch(err => {
            return done(err);
        });
};

let googleStrategyInst = new GoogleStrategy({
    clientID: serverConfig.auth.google.clientId,clientSecret: serverConfig.auth.google.clientSecret,callbackURL: 'http://localhost/api/auth/google/callback'
},verifyCallback);

passport.use(googleStrategyInst);

在 UI 应用程序中,单击按钮后,我将打开一个新窗口,该窗口将打开 '/api/auth/google' 后端 API。使用 google 帐户进行身份验证后,窗口重定向'/api/auth/google/callback' 后端 API,我可以在其中生成 JWT。我不确定如何将此 JWT 传输到前端应用程序,因为它是在单独的窗口中打开的。

我知道 res.cookie('jwt',jwt) 是一种方法。请在此处建议最佳做法..

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...