Giter VIP home page Giter VIP logo

passport-tqq's Introduction

Passport-TQQ

适用于PassportTencent QQ登录认证策略。

Install

$ npm install passport-tqq

Usage

Configure Strategy

  passport.use(new TqqStrategy({
      clientID: QQ_APP_ID,
      clientSecret: QQ_APP_KEY,
      callbackURL: "http://localhost:3000/auth/qq/callback"
    },
    function(accessToken, refreshToken, profile, done) {
      User.findOrCreate({ qqId: profile.id }, function (err, user) {
        return done(err, user);
      });
    }
  ));

Authenticate Requests

  // QQ登录认证时 `state` 为必填参数
  // 系client端的状态值,用于第三方应用防止CSRF攻击,成功授权后回调时会原样带回
  app.get('/auth/qq', function (req, res, next) {
    req.session = req.session || {};
    req.session.authState = crypto.createHash('sha1')
                              .update(-(new Date()) + '')
                              .digest('hex');
    passport
      .authenticate('qq', { 
        state: req.session.authState 
      })(req, res, next);
  });

  app.get('/auth/qq/callback', function (req, res, next) {
    // 通过比较认证返回的`state`状态值与服务器端`session`中的`state`状态值
    // 决定是否继续本次授权
    if(req.session && req.session.authState 
          && req.session.authState === req.query.state) {
      passport
        .authenticate('qq', { 
          failureRedirect: '/login' 
        })(req, res, next);
    } else {
      return next(new Error('Auth State Mismatch'));
    }
  },
  function(req, res) {
    res.redirect('/');
  });

Extended Permissions

可以配置用户授权时向用户显示的可进行授权的列表。

  app.get('/auth/qq',
      passport.authenticate('qq', {
        state: 'random state value',
        scope: ['get_user_info', 'list_album'] 
      }));

Examples

https://github.com/heroicyang/passport-tqq/tree/master/example

Credits

License

The MIT License

Copyright (c) 2011-2013 Heroic Yang <http://heroicyang.com/>

passport-tqq's People

Contributors

heroicyang avatar

Stargazers

Roman avatar katakuri avatar shawn avatar  avatar Don't Know avatar iepngs avatar Hunter.Chiu avatar DEO avatar PaulZeng avatar mole avatar  avatar Rich.Lee avatar Japh avatar Shi hua avatar tom zhou avatar  avatar JOE avatar rocky chen avatar  avatar  avatar  avatar Luo Tao avatar Nicky avatar Hao avatar aci.vang avatar  avatar

Watchers

James Cloos avatar  avatar

passport-tqq's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.