passport-vimeo-oauth2

0.0.3 • Public • Published

passport-vimeo-oauth2

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

Install

$ npm install passport-vimeo-oauth2

Usage

Configure Strategy

The Vimeo authentication strategy authenticates users using a Vimeo account and OAuth 2.0 tokens. The strategy requires a verify callback, which accepts these credentials and calls done providing a user, as well as options specifying a client ID, client secret, and callback URL.

passport.use(new VimeoStrategy({
    clientID: CLIENT_ID,
    clientSecret: CLIENT_SECRET
  },
  function(accessToken, refreshToken, profile, done) {
    User.findOrCreate({ VimeoID: profile.id }, function (err, user) {
      return done(err, user);
    });
  }
));

Authenticate Requests

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

For example, as route middleware in an Express application:

app.get('/auth/vimeo',
  passport.authorize('vimeo'));

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

Thanks

License

The MIT License

Copyright (c) 2014 Michael Pearson

Package Sidebar

Install

npm i passport-vimeo-oauth2

Weekly Downloads

76

Version

0.0.3

License

none

Last publish

Collaborators

  • cloudspark