Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 700 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 700 Bytes

Node.js wrapper for the Google Contacts API.

install

npm install google-contacts-api

usage

var GoogleContacts = require('google-contacts-api');
var contacts = new GoogleContacts({ token : req.token });
contacts.getContacts(function(err, contacts) {
    // ...
});

Refresh Your Token

var GoogleContacts = require('google-contacts-api');
var contacts = new GoogleContacts();
contacts.refreshAccessToken(req.refreshToken , function(err, function(err,newToken)) {
    // ...
});

test

To test this module, $GOOGLE_API_TOKEN must be set.

$ export GOOGLE_API_TOKEN="ya29.WDVMYoReyJOKac3AFWMDg6lfMv8jyilWpjtQBqL99IKuiWTInpEqZFDi"
$ npm test