Is there a good Google calendar .NET API tutorial (Version 3)? [closed]

KrosT

New Member
I'm having a heck of a time figuring out how to use the Google .NET API libraries to interact with my Google Calendar (Specifically with ASP.NET)? I've been perusing Google's documentation for the past couple days and cannot get it to work. Can someone recommend a good tutorial for Google's API v3? Because I'm lost.For exampleI downloaded Google's API included the "Google.Apis.Calendar.v3" dll file in references, included in my using statments, and found this code from google's site:\[quote\]\[code\] Event eEvent = new Event() { Summary = "Appointment", Location = "Somewhere", Start = new EventDateTime() { DateTime = Convert.ToDateTime("2011-06-03T10:00:00.000:-07:00").ToString(), TimeZone = "America/Los_Angeles" }, End = new EventDateTime() { DateTime = Convert.ToDateTime("2011-06-03T10:25:00.000:-07:00").ToString(), TimeZone = "America/Los_Angeles" }, Recurrence = new String[] { "RRULE:FREQ=WEEKLY;UNTIL=20110701T100000-07:00" } }; Event recurringEvent = service.Events.Insert(eEvent, "primary").Fetch();\[/code\]\[/quote\]I end up getting an error on the last line saying the name service does not exist in the current context. I cannot find any reference to 'service' in their documentation. They don't say what assembly to use.
 
Back
Top