Skip to content

aidev42/passport-todoist

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Todoist API authentication strategy for Node.js module Passport.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published