Update an event in Outlook 2007 with an iCalendar file

后端 未结 1 675
名媛妹妹
名媛妹妹 2020-12-16 00:20

There is a previous thread with this question, and hints at an answer, but I could not get it to work.

I have an ICS file. It validates. It looks like this:

相关标签:
1条回答
  • 2020-12-16 00:46

    I got a hold of Tom Carter, the guy who started the original thread. He had a working example with a request followed by a cancellation. What I had wrong was my METHOD was inside my VEVENT when it should have been outside. So here is a working update!

    Original:

    BEGIN:VCALENDAR
    VERSION:2.0
    PRODID:-//WA//FRWEB//EN
    METHOD:REQUEST
    BEGIN:VEVENT
    UID:FRICAL201
    SEQUENCE:0
    DTSTAMP:20081108T151809Z
    ORGANIZER:donotreply@test.com
    DTSTART:20081109T121200
    SUMMARY:11/9/2008 12:12:00 PM TRIP FROM JFK AIRPORT (JFK)
    LOCATION:JFK AIRPORT (JFK)
    END:VEVENT
    END:VCALENDAR
    

    Update:

    BEGIN:VCALENDAR
    VERSION:2.0
    PRODID:-//WA//FRWEB//EN
    METHOD:REQUEST
    BEGIN:VEVENT
    UID:FRICAL201
    SEQUENCE:1
    DTSTAMP:20081108T161809Z
    ORGANIZER:donotreply@test.com
    DTSTART:20081109T121300
    SUMMARY:11/9/2008 12:13:00 PM TRIP FROM JFK AIRPORT (JFK)
    LOCATION:JFK AIRPORT (JFK)
    END:VEVENT
    END:VCALENDAR
    

    All I did was add the request method (in the correct spot!), and an organizer.

    0 讨论(0)
提交回复
热议问题