google-calendar icon indicating copy to clipboard operation
google-calendar copied to clipboard

Google Calendar API connection in Node.js

Results 9 google-calendar issues
Sort by recently updated
recently updated
newest added

**Node 14+** ```js const calendar = new gcal.GoogleCalendar(accessToken); calendar.events.list( // arguments ); ``` Node crashes with the following error: ``` Error [ERR_METHOD_NOT_IMPLEMENTED]: The _read() method is not implemented 0|www |...

Any request returns an error 401 (Login Required) var gcal = require('google-calendar'); var google_calendar = new gcal.GoogleCalendar("API KEY"); google_calendar.calendarList.list(function(err, calendarList) { console.log(calendarList) }); Returning error `{ errors: [ { domain:...

Heads up - This package as of 1.3.2 has loads of security issues as reported by npm audit, see below... Manual Review Some vulnerabilities require your attention to resolve Visit...

Please help, I have tried creating new events using this package, my code is like this : var google_calendar = new gcal.GoogleCalendar(req.user.token); var resource = { 'summary': 'Google I/O 2019',...

Needle version 0.5 was causing socket hang up issues when issuing multiple calls to google calendar. Updating it to ~2.0.1 resolved the issue.

I am using the Google Calendar api to access users' events. I want to access all of the users events that are marked as "busy." I can't use the `freebusy`...

from the Acl delete method: Acl.prototype.delete = function(calendarId, ruleId, callback) { calendarId = encodeURIComponent(calendarId); ruleId = encodeURIComponent(ruleId); this.request('DEL', '/calendars/' + calendarId + '/acl/' + ruleId, {}, {}, null, callback); }

Creating a new calendar regularly takes more than 10 seconds, resulting in a timeout. The `needle` library used has a default timeout of 10 seconds, but I if I see...