google-contacts-oauth

Get contacts from Google with OAuth tokens

Usage no npm install needed!

<script type="module">
  import googleContactsOauth from 'https://cdn.skypack.dev/google-contacts-oauth';
</script>

README

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