简体   繁体   English

Node.JS验证Google身份验证令牌

[英]Node.JS verify Google Authentication token

I am trying to build a Node.JS REST server using the Express.JS framework that integrates Google authentication for mobile applications. 我正在尝试使用Express.JS框架构建一个Node.JS REST服务器,该框架集成了针对移动应用程序的Google身份验证。 The Node.JS version used is 0.12.7. 使用的Node.JS版本是0.12.7。

I am having a problem when verifying the Google token received from the application, as it seems that the module I am trying to load returns an error. 验证从应用程序收到的Google令牌时出现问题,因为我尝试加载的模块似乎返回了错误。

The module used to verify this token is passport-google-token . 用于验证此令牌的模块是passport-google-token The code used to initialize this module and check the token is as follows: 用于初始化此模块并检查令牌的代码如下:

index.js file index.js文件

'use strict';

import express from 'express';
import passport from 'passport';
import {setTokenCookie} from '../../auth.service';

var router = express.Router();

router
  .post('/callback', passport.authenticate('google-token'), setTokenCookie);

export default router;

passport.js file password.js文件

import passport from 'passport';
import GoogleTokenStrategy from 'passport-google-token';

export function setup(User, config) {
  passport.use(new GoogleTokenStrategy({
    clientID: config.google.clientID,
    clientSecret: config.google.clientSecret
  },
  function(accessToken, refreshToken, profile, done) {
    User.findOne({'google.id': profile.id}).exec()
      .then(user => {
        if (user) {
          console.log(user);
          return done(null, user);
        }

        user = new User({
          name: profile.displayName,
          email: profile.emails[0].value,
          role: 'user',
          username: profile.emails[0].value.split('@')[0],
          provider: 'google',
          google: profile._json
        });
        console.log(user);
        user.save()
          .then(user => done(null, user))
          .catch(err => done(err));
      })
      .catch(err => done(err));
  }));
}

When I try to start the server I am receiving the following error: 当我尝试启动服务器时,出现以下错误:

D:\Work\SoftwareUp\softwareup_android_demo\server\server\auth\google\mobile\passport.js:19
  _passport2.default.use(new _passportGoogleToken2.default({
                         ^
TypeError: object is not a function
    at Object.setup (D:/Work/SoftwareUp/softwareup_android_demo/server/server/auth/google/mobile/passport.js:5:16)
    at Object.<anonymous> (D:/Work/SoftwareUp/softwareup_android_demo/server/server/auth/index.js:13:37)
    at Module._compile (module.js:460:26)
    at loader (D:\Work\SoftwareUp\softwareup_android_demo\server\node_modules\babel-register\lib\node.js:144:5)
    at Object.require.extensions.(anonymous function) [as .js] (D:\Work\SoftwareUp\softwareup_android_demo\server\node_modules\babel-register\lib\node.js:154:7)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.exports.default (D:/Work/SoftwareUp/softwareup_android_demo/server/server/routes.js:15:20)
    at Object.<anonymous> (D:/Work/SoftwareUp/softwareup_android_demo/server/server/app.js:27:1)
    at Module._compile (module.js:460:26)
    at loader (D:\Work\SoftwareUp\softwareup_android_demo\server\node_modules\babel-register\lib\node.js:144:5)
    at Object.require.extensions.(anonymous function) [as .js] (D:\Work\SoftwareUp\softwareup_android_demo\server\node_modules\babel-register\lib\node.js:154:7)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (D:\Work\SoftwareUp\softwareup_android_demo\server\server\index.js:12:28)
    at Module._compile (module.js:460:26)
    at Object.Module._extensions..js (module.js:478:10)
    at Module.load (module.js:355:32)
Stopping Express server

From what I have figured there is a problem when calling the constructor but I am not sure what that problem is. 据我了解,调用构造函数时存在问题,但我不确定该是什么问题。

Could you please help me? 请你帮助我好吗?

Thank you. 谢谢。

Try to change your import code from 尝试从更改您的导入代码

import GoogleTokenStrategy from 'passport-google-token';

to

import { Strategy as GoogleTokenStrategy } from 'passport-google-token';

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM