passport-todoist

Todoist authentication strategy for Passport.js

Usage no npm install needed!

<script type="module">
  import passportTodoist from 'https://cdn.skypack.dev/passport-todoist';
</script>

README

Passport-Todoist-OAuth

Passport strategies for authorizing read/write with Todoist using OAuth 2.0.

This module lets you authenticate using Todoist in your Node.js applications. By plugging into Passport, Todoist authentication can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.

Install

$ npm i passport-todoist

Usage of OAuth 2.0

Configure Strategy

The Todoist OAuth 2.0 authentication strategy authenticates users using a Todoist 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 clientID and clientSecret. Note that per Todoist API documentation they always redirect to the callback URL specified in your [Todoist developer app management] (https://developer.todoist.com/appconsole.html/)

var VenmoStrategy = require('passport-venmo').Strategy;

passport.use('todoist', new TodoistStrategy({
    clientID: TodoistKey,
    clientSecret: TodoistSecret
},
  function(accessToken, todoist, done) {
    User.findOrCreate({ TodoistID: todoist.id }, function (err, user) {
      return done(err, user);
    });
  }
));

Authenticate Requests

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

For example, as route middleware in an Express application:

  app.get('/auth/todoist',
    passport.authenticate('todoist', { scope: 'data:read_write'}));

  app.get('/auth/todoist/callback',
    passport.authenticate('todoist', {successRedirect: '/profile', failureRedirect: '/'}));

Credits

License

ISC

Copyright (c) 2016