Skip to content

stuartleigh/Google-Contacts

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node.js wrapper for the Google Contacts API.

Install

npm install google-contacts

Usage

var GoogleContacts = require('google-contacts').GoogleContacts;
var c = new GoogleContacts({
  token: 'oauth2 token...'
});

c.getContacts(cb, params);

Params:

type (default: 'contacts') alt (default: json) projection email (default: 'default') max-results (default: 2000)

See https://developers.google.com/google-apps/contacts/v3/.

Test

 GOOGLE_TOKEN=sometoken npm run test
 # verbose test
 DEBUG=google-contacts GOOGLE_TOKEN=sometoken npm run test

You can get a test token at https://developers.google.com/oauthplayground/.

About

Node.js wrapper for the Google Contacts API (uses OAuth 2.0 token authentication)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%