Skip to content

littledumb/passport-feishu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

passport-feishu

Passport strategy for authenticating with Feishu.

To learn more details about Feishu's OAuth strategy, please refer to its online docs (English version, Chinese version).

This project is an imitation of Jared Hanson's works, such as passport-facebook and passport-google-oauth2.

Install

$ npm install passport-feishu

Usage

Configure Strategy

const FeishuStrategy = require('passport-feishu').Strategy;

passport.use(new FeishuStrategy({
    clientID: FEISHU_APP_ID,
    clientSecret: FEISHU_APP_SECRET,
    callbackURL: "http://www.example.com/auth/feishu/callback",
    appType: "public",
    appTicket: "the-ticket-received-from-feishu-service"
  },
  function(accessToken, refreshToken, profile, cb) {
    User.findOrCreate({ feishuUserId: profile.id }, function (err, user) {
      return cb(err, user);
    });
  }
));

Authenticate Requests

Use passport.authenticate(), specifying the 'feishu' strategy, to authenticate requests.

For example, as route middleware in an Express application:

app.get('/auth/feishu',
  passport.authenticate('feishu'));

app.get('/auth/feishu/callback', 
  passport.authenticate('feishu', { session: true, successReturnToOrRedirect: '/' })
);

License

The MIT License

Copyright (c) 2020 Jiamin Zhao

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published