Search code examples
google-calendar-apigdatagdata-api

Google Calendar feed api deleted events


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?


Solution

  • Try to add showdeleted=true to your query feed and then check for EventStatus.CANCELED on retrieved entries.

    Check this thread for further information.