使用带有nodejs google api库的PassportJS google身份验证

时间:2013-07-29 12:06:44

标签: node.js google-api passport.js google-api-client

我目前正在考虑使用nodejs客户端实现google api:

https://github.com/google/google-api-nodejs-client/

我正在尝试使用护照进行身份验证,这似乎正在起作用

passport.use(new GoogleStrategy({
  clientID: GOOGLE_CLIENT_ID,
  clientSecret: GOOGLE_CLIENT_SECRET,
  callbackURL: "http://localhost:3000/auth/google/callback"
},
function(accessToken, refreshToken, profile, done) {
    process.nextTick(function () {

      var user = {
        id: profile.id,
        email: profile.email,
        firstName: profile.given_name,
        lastName: profile.family_name,
        accessToken: accessToken
      };

      return done(null, user);
    });
  }
  ));

在我的google身份验证回调中:

app.get('/auth/google/callback',
  passport.authenticate('google', { failureRedirect: '/login' }),
  function(req, res) {

    //do something here with the google api

  });

我可以抓住req.user,这有accessToken

但是,Google api nodejs客户端的文档并不清楚如何使用accessToken。 包含的示例显示OAauth2Client检索令牌,但我想这部分已经使用Passport进行了覆盖?

1 个答案:

答案 0 :(得分:4)

我不熟悉google-api-nodejs-client,但这是在他们的文档中:

oauth2Client.credentials = {
  access_token: 'ACCESS TOKEN HERE',
  refresh_token: 'REFRESH TOKEN HERE'
};

client
  .plus.people.get({ userId: 'me' })
  .withAuthClient(oauth2Client)
  .execute(callback);

我假设您可以将凭据设置为Passport提供的凭据,并且一切正常。

老实说,我发现这些API包装器非常有用,建议只使用request。这样,您就可以使用熟悉的模块从任何提供程序访问任何 API服务。