使用C#

时间:2018-08-31 07:15:06

标签: c# asp.net .net-core google-calendar-api

我对使用C#的Google Calendar API有疑问。我想设置特定事件的颜色,但是无论我添加到ColorId属性中如何,它都不会影响更新后的事件。

这是我的代码:

 Event data = CalendarService.Events.Get("primary", id).Execute();
 data.Description = _GetDescription(done, notes, uniqueLinkId);

 Colors colors = CalendarService.Colors.Get().Execute();
 if (colors != null && colors.Calendar != null)
 {
      var color = colors.Calendar.FirstOrDefault(x => x.Value.Background == "#16a765");
      if (!string.IsNullOrWhiteSpace(color.Key))
      {
                data.ColorId = color.Key;
      }
 }

 var request = CalendarService.Events.Update(data, "primary", id);
 request.SupportsAttachments = true;
 request.SendNotifications = false;

 request.Execute();

关于这怎么不起作用的任何想法?

关于, 安德烈亚斯(Andreas)

1 个答案:

答案 0 :(得分:0)

它可能是一个错误CalendarList background color change is not working (.NET)

唯一的问题是我也无法使用Google API Exporer对其进行设置。这让我想知道这是否是他们在发布新的Google日历后删除的内容。

我已经向Google发送了一封电子邮件,但是我没有与该团队直接联系,所以我要等一会儿才能听到。