Jeff-Tian / passport-citi

passport strategy for authenticating with citi sandbox account

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

passport-citi

Passport strategy for authenticating with Citi Account

Dependencies Build Status

Quality gate

支持功能

在线演示

安装

npm install passport-citi --save

使用

Configure Strategy

 passport.use(new CitiStrategy({
        appID: {APPID},
        name:{默认为wechat,可以设置组件的名字}
        appSecret: {APPSECRET},
        client:{wechat|web},
        callbackURL: {CALLBACKURL},
        scope: {snsapi_userinfo|snsapi_base},
        state:{STATE},
        getToken: {getToken},
        saveToken: {saveToken}
      },
      function(accessToken, refreshToken, profile,expires_in, done) {
        return done(err,profile);
      }
));

The `callbackURL`, `scope` and `state` can be overwritten in `passport.authenticate` middleware.

The `getToken` and `saveToken` can be provided to initialize Wechat OAuth instance.

Authenticate Requests

router.get("/auth/citi", passport.authenticate("citi", options));

options - Optional. Can include the following:

  • state - Override state for this specific API call
  • callbackURL - Override callbackURL for this specific API call
  • scope - Override scope for this specific API call

If no callbackURL is specified, the same request url will be used.

Authentication Callback

router.get(
  "/auth/citi/callback",
  passport.authenticate("citi", {
    failureRedirect: "/auth/fail",
    successReturnToOrRedirect: "/"
  })
);

License

Copyright (c) 2014 liangyali
Licensed under the MIT license.

About

passport strategy for authenticating with citi sandbox account


Languages

Language:JavaScript 94.8%Language:TypeScript 5.2%