Home

Awesome

google-oauth-jwt-stream

Build Status

An endless supply of fresh OAuth access tokens for use with Google APIs.

There are already several libraries that can generate Google service tokens, but I wanted one that:

Example

import fs from "fs"
import {Token} from "google-oauth-jwt-stream"

let email = "xxx...xxx@developer.gserviceaccount.com"
let key = fs.createReadStream("./key.pem")

let scopes = ["https://spreadsheets.google.com/feeds"]
let options = {ttl: 10 * 1000, pad: 1000} // silly short for demo
let token = new Token(email, key, scopes, options)

token.createReadStream().on("data", console.log)
// { access_token: "...Dg7w", token_type: 'Bearer', expires_in: 3600 }
// { access_token: "...sixQ", token_type: 'Bearer', expires_in: 3600 }
// { access_token: "...1ftw", token_type: 'Bearer', expires_in: 3600 }
// ...

Installation

npm install google-oauth-jwt-stream

Setup

See the SETUP file.

API

import Token from "google-oauth-jwt-stream"

let token = Token(email, key, scopes, [options])

Returns a token given the following parameters:

let stream = token.createReadStream()

Returns a readable stream of tokens. Note that since this requires a setTimeout to keep the stream open, your process will not terminate implicitly.

token.fetch(callback)

Executes callback with (err, token), and caches tokens so that all subsequent calls return the same token. Token refresh is performed automatically.