0

我正在为 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();
4

1 回答 1

1

Google Calendar API 现在支持推送通知。您可以使用这些来监视日历的更改并保持数据库同步。

于 2013-08-13T13:48:17.410 回答