0.0.3 • Published 5 years ago

google-oauth2-node v0.0.3

Weekly downloads
2,779
License
MIT
Repository
github
Last release
5 years ago

Node.js Google OAuth2 Client

Using this client you can get a refresh and access tokens for using Google APIs. The client is specifically designed to be used in node.js, as an "Installed Application".

Installation

npm i google-oauth2-node --save

Usage

import { auth } from 'google-oauth2-node';

const clientId = '...';
const clientSecret = '...';
const scope = 'https://www.googleapis.com/auth/analytics.readonly';

auth({ clientId, clientSecret, scope }).then(res => console.log(res), err => console.error(err));

License

MIT