I created 3 events in Calendar, then I run
response = @client.execute!(
:api_method => @calendar_api.events.list,
:parameters => {
:calendarId => "primary",
:maxResults => 10,
:singleEvents => true,
:orderBy => 'startTime'}
)
I received 3 items but #next_sync_token
method called on response.data
returns nil (#next_page_token
also returns nil but in this case it is correct). I tried to set :fields parameter to "nextSyncToken" but still nothing. I also made some updates on that events and #next_sync_token
was still set to nil..Am I wrong? Maybe I made some mistake ?
The call only with calendarId
in parameters do the same.