0.1.0 • Published 9 years ago

passport-misfit v0.1.0

Weekly downloads
1
License
-
Repository
github
Last release
9 years ago

passport-misfit

Passport strategy for authenticating with Misfit using the OAuth 2.0 API.

See https://build.misfit.com/ for developer portal. You must apply for API access.

Install

$ npm install passport-misfit

Usage

Configure Strategy

note: Misfit currently does not provide a refreshToken in its response. It will be undefined

passport.use(new MisfitStrategy({
    clientID: YOUR_MISFIT_APP_ID,
    clientSecret: YOUR_MISFIT_APP_SECRET,
    callbackURL: "http://localhost:3000/auth/misfit/callback"
  },
  function(accessToken, refreshToken, profile, done) {
    User.findOrCreate({ misfitUserId: profile.userId }, function (err, user) {
      return done(err, user);
    });
  }
));

Authenticate Requests

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

For example, as route middleware in an Express application:

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

app.get('/auth/misfit/callback', 
  passport.authenticate('misfit', { failureRedirect: '/login' }),
  function(req, res) {
    // Successful authentication, redirect home.
    res.redirect('/');
  });

Tests

$ npm install
$ npm test

Credits

License

The MIT License

Copyright (c) 2014 Chris Quartier