Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
388 views
in Technique[技术] by (71.8m points)

asp.net - Update Database if change in Google Calendar Event

I am creating app in ASp.NET for Google Calendar. I am getting one problem like if i have created a meeting into Google calendar using my application and after that i manually deleted that meeting from Google calendar, and i am again creating a meeting on the same time then it is showing busy because i am have an entry in my database because i am manually deleted the meeting from Google calendar. so is there any other procedure of getting the notification if there is any change to our event on Google calendar...

 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, "[email protected]").Execute();
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Google Calendar API now supports push notifications. You can use these to monitor changes to the calendar and keep the database synced up.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...