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

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -