【发布时间】:2014-12-15 17:08:21
【问题描述】:
我设法使用谷歌日历 API 创建了一个活动并向其中添加了参与者。但是当我尝试更新同一个事件时,现在以访客身份登录,我无法更新它。即使我将GuestsCanModify 值设置为true。有谁知道是否可以以访客身份更新活动并将更改复制到原始活动,就像您更新原始活动时已经发生的那样,它会自动更新客人日历上的活动? 下面是我用来创建事件的一小段代码。
Google.Apis.Calendar.v3.Data.Event event = new Google.Apis.Calendar.v3.Data.Event();
event.Summary = resCalendario.Titulo;
event.Location = resCalendario.Local;
event.Description = resCalendario.Obs;
event.GuestsCanModify = true;
【问题讨论】: