I’m syncing the Google Calendar with my application (I store events in a database). When an event is updated I can easily find the last updates by sorting the event feed on the ‘updated’ order.
However, if an event is removed / deleted, how can I track this update from the feed?
I’m syncing the Google Calendar with my application (I store events in a database).
Share
Try to add
showdeleted=trueto your query feed and then check forEventStatus.CANCELEDon retrieved entries.Check this thread for further information.