google-contacts-with-photos-phone
v0.2.5
Published
Get contacts from Google with OAuth tokens with photos and phone
Downloads
2
Maintainers
Readme
google-contacts-with-photos-phone
A promise based API to fetch contacts from Google with OAuth tokens and photos and phone.
This project is based on fork of https://github.com/stevelacy/google-contacts-oauth.
Install
$ npm install google-contacts-with-photos-phone
Usage
var googleContacts = require('google-contacts-with-photos-phone');
var opts = {
token: 'google oauth token'
};
googleContacts(opts)
.then(function (data) {
console.log(data);
})
.catch(function (err) {
console.log(err);
});
//=>[{email: '[email protected]', name: 'Steve Lacy', phone: '99999999', photo: 'http://...'}, ... ]
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'