0.0.2 • Published 12 years ago

gmail-xoauth v0.0.2

Weekly downloads
19
License
-
Repository
github
Last release
12 years ago

gmail-xoauth

This module generates xoauth string from oauth 1.0 token for Gmail IMAP login. The logic is taken from http://code.google.com/p/google-mail-xoauth-tools/source/browse/trunk/python/xoauth.py.

Installation

$ npm install gmail-xoauth

Example

var ImapConnection = require('imap').ImapConnection,
    XOauth = require('gmail-xoauth');

xoauth = new XOauth(<consumer key>, <consumer secret>);

var imapConfig = {
  username: <email address>,
  xoauth: xoauth.generateIMAPXOauthString(<email address>, <oauth token>, <oauth token secret>),
  host: 'imap.gmail.com',
  port: '993',
  secure: true
}

var imap = new ImapConnection(this.imapConfig);
0.0.2

12 years ago

0.0.1

12 years ago