0.0.1 • Published 10 years ago

google-auth v0.0.1

Weekly downloads
29
License
MIT
Repository
github
Last release
10 years ago

google-auth

Command line tool to retrieve oauth tokens for programmatic access to google services.

Installation

npm install -g google-auth

Usage

Obtain Google Client ID & Secret

Running the command line program

$ google-auth --id=<client_id> --secret=<client_secret> [services to auth with]

If you do not pass in the id and secret parameters, the app will look for the environmental variables GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET

Example

For example, to authenticate with google drive and google calendar:

$ export GOOGLE_CLIENT_ID=<client_id>
$ export GOOGLE_CLIENT_SECRET=<client_secret>
$ google-auth drive calendar

this will open a web browser for you to confirm your authentication.