I am developing
ASP.NET application for Google calendar integration. as I am able to created a proper watch channel between my app and Google calendar watch service, but i am little bit confused, how will it communicate with my application. Means if any one change to the Google calendar then how can i get the proper response i.e. what are the events that have changed or what has changed over the Google calendar. I am specifing my code below for creating channel.
Channel channel = new Channel();
channel.Id = System.Guid.NewGuid().ToString();
channel.Type = "web_hook";
EventsResource.WatchRequest request = service.Events.Watch(channel, "
XXX...@gmail.com");
request.Oauth_token = token;
Channel ch1 = request.Execute();