wanasit / google-calendar

Google Calendar API connection in Node.js
MIT License
230 stars 54 forks source link

Can we have a insert calendar endpoint? #7

Closed ghost closed 11 years ago

ghost commented 11 years ago

https://developers.google.com/google-apps/calendar/v3/reference/calendars/insert

wanasit commented 11 years ago

I haven't test it yet. But you should be able to do it by:


var new_calendar = { summary : 'Testing Calendar' }

google_calendar.calendars.insert(new_calendar, function(err, calendar) {

    …
});