Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 342
hsmit Avatar asked Apr 06 '10 13:04

hsmit


People also ask

Is there a way to mass delete events in Google Calendar?

If the events that you're trying to delete in Google Calendar are recurring, you're in luck. There is a very easy way to bulk delete recurring events in Google Calendar: In Google Calendar, click on any of the recurring events that you want to delete. Click on the trash can symbol in the event popup box.


1 Answers

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

Check this thread for further information.

like image 96
systempuntoout Avatar answered Oct 17 '22 18:10

systempuntoout