I'm using google calendar's node sdk, and I'm doing this call:
const google = require('googleapis');
const calendar = google.calendar('v3');
calendar.events.list({
auth,
calendarId,
maxResults: 2500,
syncToken: 'COCikJ6a8NgCEOCikJ6a8NgCGAU='
}, (err, data) => {
console.log(err)
console.log(data)
});
The problem I'm having is that syncToken is obviated, so I always receive all events.
I don't know if I'm doing something wrong here.