passport-affinity

1.0.0 • Public • Published

passport-affinity

Install

$ npm install passport-affinity

Usage

Configure Strategy

The affinity authentication strategy authenticates users using a userEmail and apiKey. The strategy requires a verify callback, which accepts these credentials and calls done providing a user.

passport.use(new AffinityStrategy(
  async (userEmail, apiKey, crmId, done) {
    //handle the user requirement here
  }
));

Authenticate Requests

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

For example, as route middleware in an Express application:

app.post('/login', 
  passport.authenticate('affinity', { failureRedirect: '/login' }),
  function(req, res) {
    res.redirect('/');
  });

Tests

$ npm install

License

The MIT License

/passport-affinity/

    Package Sidebar

    Install

    npm i passport-affinity

    Weekly Downloads

    21

    Version

    1.0.0

    License

    none

    Unpacked Size

    4.96 kB

    Total Files

    6

    Last publish

    Collaborators

    • raman99444