我正在为 Google 日历在 ASp.NET 中创建应用程序。我遇到了一个问题,例如如果我使用我的应用程序在 Google 日历中创建了一个会议,然后我从 Google 日历中手动删除了该会议,我又在同一时间再次创建了一个会议,然后它显示为忙碌,因为我有我的数据库中的一个条目,因为我从 Google 日历中手动删除了会议。如果我们在 Google 日历上的活动有任何变化,是否还有其他程序可以获取通知...
Channel channel = new Channel();
channel.Id = System.Guid.NewGuid().ToString();
channel.Type = "web_hook";
channel.Address = "https://www.translitepc.net/Notification.aspx";
Channel ch1 = service.Events.Watch(channel, "hjain@scheduleonce.com").Execute();