c# - Is it possible develop an asp.Net application that creates events on Google Calender? -
i working on personnel asp.net project has calender based events. thinking if can sync events user's google calender.
is possible create application create events on google calender? there kind of api , if yes, have limitations?
there api it. check this link think you're looking following:
evententry entry = new evententry(); // set title , content of entry. entry.title.text = "tennis beth"; entry.content.content = "meet quick lesson."; // set location event. eventlocation = new where(); eventlocation.valuestring = "south tennis courts"; entry.locations.add(eventlocation); when eventtime = new when(datetime.now, datetime.now.addhours(2)); entry.times.add(eventtime); uri posturi = new uri("https://www.google.com/calendar/feeds/default/private/full"); // send request , receive response: atomentry insertedentry = service.insert(posturi, entry);
if have calendar updating set public, or invite other people, can subscribe calendar , updates put show on calendars
Comments
Post a Comment