This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

google-contacts-oauth

0.2.0 • Public • Published

google-contacts-oauth NPM version Build Status

Get contacts from Google with OAuth tokens

Install

$ npm install google-contacts-oauth

Usage

var googleContacts = require('google-contacts-oauth');
 
var opts = {
  token: 'google oauth token'
};
googleContacts(opts, function(err, data){
  console.log(data);
});
//=>[{email: 'me@slacy.me', name: 'Steve Lacy'}, ... ]

Options

token

OAuth token received from Google's OAuth API.

  type: 'String'
  default: null
  required: true

max-results:

Max results returned

  type: 'String'
  default: '500'

Lower level API

type

  type: 'String'
  default: 'contacts'

projection

  type: 'String'
  default: 'full'

LICENSE

(MIT License)

Copyright (c) 2015 Steve Lacy me@slacy.me slacy.me

Dependents (4)

Package Sidebar

Install

npm i google-contacts-oauth

Weekly Downloads

3

Version

0.2.0

License

MIT

Last publish

Collaborators

  • stevelacy