我正在使用C#Google API以编程方式从我的应用程序添加重复事件(asp.net mvc - C#)。以下是它的代码(我将在2012年12月1日开始并于2012年12月3日结束时添加每日活动):
GOAuthRequestFactory authFactory = new GOAuthRequestFactory("cl", "MyApp");
authFactory.ConsumerKey = "xxxx";
authFactory.ConsumerSecret = "yyyy";
authFactory.Token = "zzzz";
authFactory.TokenSecret = "ssss";
Google.GData.Calendar.CalendarService service = new Google.GData.Calendar.CalendarService(authFactory.ApplicationName);
service.RequestFactory = authFactory;
EventEntry entry = new EventEntry();
entry.Title.Text = "Year End Meeting";
Recurrence recur = new Recurrence();
recur.Value = "DTSTART;VALUE=DATE:20121201\r\nDTEND;VALUE=DATE:20121201\r\nRRULE:FREQ=DAILY;UNTIL=20121203;INTERVAL=1";
entry.Recurrence = recur;
Uri postUri = new Uri("https://www.google.com/calendar/feeds/default/private/full");
EventEntry insertedEntry = service.Insert(postUri, entry);
if (insertedEntry != null && !string.IsNullOrEmpty(insertedEntry.EventId))
{
//Update the Google Event Id to the Event Table
this.UpdateGoogleEventId(_userId, _eventId, insertedEntry.EventId);
}
直到这一切顺利。现在我需要从重复事件更新特定事件(仅此实例)。对于Ex。;我需要将2012年12月2日活动的标题改为“明年计划”。同样,我需要为All Follow执行相同的操作,此系列中的所有事件也会更新操作。我正在根据Google事件ID(创建重复事件时的响应中)删除所有事件,然后再次创建事件,这是一种双重工作。
这就是我删除所有重复事件的方法,并执行上面给出的创建:
Uri delteUri = new Uri("https://www.google.com/calendar/feeds/default/private/full/" + googleeventid);
EventQuery deleteQuery = new EventQuery(delteUri.ToString());
EventFeed deleteFeed = service.Query(deleteQuery);
if (deleteFeed.Entries.Count > 0)
{
AtomEntry eve = deleteFeed.Entries[0];
if (eve != null)
{
service.Delete(eve);
}
}
根据所需条件仅更新实例的最佳方法是什么(仅此实例,以下所有内容,本系列中的所有事件)?
答案 0 :(得分:0)
10分钟前刚想出来。
要在特定日期访问定期事件的单个实例,请使用以下内容作为事件网址:
https://www.google.com/calendar/feeds/default/private/full/"
+ googleEventId + "_" + dateTime.ToString("yyyyMMdd");