OAuth2登录后重定向到前端(在其他URL上)

时间:2019-06-18 16:07:50

标签: node.js oauth-2.0 passport.js passport-google-oauth2

我正在尝试按照以下步骤设置我的应用程序:

  1. Angular 7前端,用于http://localhost:4200
  2. Express后端,例如http://localhost:3500
  3. 用于OAuth2身份验证的护照库

我正在从服务器端(Express / Node.js)设置OAuth2流。 从前端单击“登录”按钮后,请求将发送到服务器, 重定向到Google询问用户凭据/权限等。

我的回调URL是:http://localhost:3500/auth/callback

成功登录后,有什么好方法可以重定向回前端URL,即http://localhost:4200/?由于回调网址位于服务器端

1 个答案:

答案 0 :(得分:0)

我最终决定采用以下策略:

护照策略设置如下:

/**
 * Route handlers for Google oauth2 authentication. 
 * The first handler initiates the authentication flow. 
 * The second handler receives the response from Google. In case of failure, we will 
 * redirect to a pre-determined configurable route. In case of success, we issue a Json 
 * Web Token, and redirect to a pre-determined, configurable route.
 */

 this.router.get('/google', (req: Request, res: Response, next: NextFunction) => {
      passport.authenticate('google', {
          scope: process.env.GOOGLE_OAUTH2_SCOPES.split(",")
      })(req, res, next);
 });

 this.router.get('/google/callback',
      passport.authenticate('google', { failureRedirect:process.env.AUTH_FAILURE_REDIRECT }), (req, res) => this.jwtAuthService.issueJWTEnhanced(req, res, 'google'));

issueJwtEnhanced定义如下:

/**
 * Middleware for issuing JWT as part of the authentication flow. 
 * @param req Express HttpRequest Object
 * @param res Express HttpResponse Object
 */
 issueJWTEnhanced(req: any, res: Response, loginMech: string ) {
        this.logger.info('Inside JWT issuing service');
        this.logger.info('UserID: ' + req.user._id);
        jwt.sign({userId: req.user._id, loginMethod: loginMech}, process.env.JWT_SECRET, {expiresIn: '5 min'}, (err, token) => {
            if(err){
                this.logger.error('Error while trying to issue JWT: ' + err);
                this.logger.error(JSON.stringify(err));
                return res.redirect(process.env.AUTH_FAILURE_REDIRECT);
            }else{
                this.logger.info('Successfully issued JWT');
                this.logger.info('JWT Issued: ' + token);
                return res.redirect(process.env.AUTH_SUCCESS_REDIRECT + '/' + token);
            }
        }); 
    }

在哪里

AUTH_SUCCESS_REDIRECT ='http://localhost:4200/login-success' AUTH_FAILURE_REDIRECT ='http://localhost:4200/login/'