UNPKG

google-oauth-jwt

Version:

Implementation of Google OAuth 2.0 for server-to-server interactions, allowing secure use of Google APIs without interaction from an end-user.

8 lines (6 loc) 254 B
var auth = require('./lib/auth'), request = require('./lib/request-jwt'); exports.TokenCache = require('./lib/token-cache'); exports.authenticate = auth.authenticate; exports.encodeJWT = auth.encodeJWT; exports.requestWithJWT = request.requestWithJWT;