0

我最近注意到使用 .NET 重复出现停止工作(不确定是否停止在其他语言库中工作)。

该代码完美运行了一年多,但突然之间它没有保存重复,它保存了事件但作为单个实例,这是一段代码,使用 OAuth2,非常简单(重复规则来自在 Google 中创建的事件,因此没有错误),此代码保存事件而不会重复:

Google.Apis.Calendar.v3.Data.Event entry = new Google.Apis.Calendar.v3.Data.Event();

            string recurrenceRule = "RRULE:FREQ=DAILY;UNTIL=20130906T222536Z";

            entry.Summary = "Test RO2";
            entry.Description = "from prototype2";

            entry.Location = "Home2";

            // Dummy start and end datetime, timezone GMT -4 (my timezone)
            string startTime = String.Format("{0:s}", DateTime.Now);
            string endTime = String.Format("{0:s}", DateTime.Now.AddMinutes(30));
            EventDateTime starting = new EventDateTime() {                     
                DateTime = startTime,
                TimeZone = "America/La_Paz"
            };
            EventDateTime ending = new EventDateTime()
            {                    
                DateTime = endTime,
                TimeZone = "America/La_Paz"
            };
            entry.Start = starting;
            entry.End = ending;

            entry.Recurrence = new List<string>(){
                 recurrenceRule
            };
            entry.OriginalStartTime = starting;

            // The event is saved, but it returns with no recurrence and no exception
            Google.Apis.Calendar.v3.Data.Event eventCreated = _service.Events.Insert(entry, calendarId).Fetch();

如果有人知道修复或解决方法,请告诉我,如果您对其他库(PHP、Ruby、Python、Java 等)也有同样的问题

4

1 回答 1

0

碰巧这一行:

entry.OriginalStartTime = starting;

搞砸了所有的复发,删除那条线解决了问题,不知道为什么,由于缺乏支持、过时的 gui 和无用的样本,google API 几乎是一个黑洞。

于 2013-09-05T21:33:18.430 回答