On Mon, Nov 3, 2008 at 6:57 PM, kaka <[EMAIL PROTECTED]> wrote: > > Hi, > > When I delete an event, it still exists in Calendar, and I can query > it by adding parameter "showdeleted=true" to the feed. For my > application purpose, I want to delete it forever or update it with a > special status so that in the next time load, my app will skip the > deleted event. Is there any way to do this? > > Thanks in advance.
You could add an extended property to the event, letting your app know that it's already seen it. To do this, just add an element like this to the entry: <gd:extendedProperty name="com.example.myapp.skip" value="true"/> That element will then be sent along with the event on future requests. -- Trevor Johns --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
