google calendar helpers
用于NodeJS的简单Google日历使用的便捷功能基于安装: npm install google-calendar-helpers用法初始化API: var accessToken = '--- your access token ---' , clientId = '--- client ID ---' , clientSecret = '--- client secret ---' , calendarId = '--- Google Calendar Id ---' , CalendarClient = require('google-calendar-helpers'); , calendarClient = new CalendarClient(accessToken, clientId, clientSecret, calend
用户评论