Hi I'm using Google Calendar API v2 to insert events into my calendar. I heard that v2 will eventually stop working as the new v3 will be taking its place. I've tried working with v3, but I cannot figure out how to get it to work. Can someone help me migrate my code over to v3? This is my v2 code:\[code\]using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Net;using Google.GData.Calendar;using Google.GData.Client;using Google.GData.Extensions;namespace G_CalendarEnrty{ public partial class AddItem : System.Web.UI.Page { protected void Button1_Click(object sender, EventArgs e) { CalendarService cs = new CalendarService("application name"); cs.setUserCredentials("username", "password"); Google.GData.Calendar.EventEntry entry = new Google.GData.Calendar.EventEntry(); // Set the title and content of the entry. entry.Title.Text = "Test Event"; entry.Content.Content = "Test. \n\n Test Text Line 2"; // Set a location for the event. Where eventLocation = new Where(); eventLocation.ValueString = "Test Location"; 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"); Reminder reminder = new Reminder(); reminder.Days = 14; reminder.Method = Reminder.ReminderMethod.alert; entry.Reminders.Add(reminder); // Send the request and receive the response: AtomEntry insertedEntry = cs.Insert(postUri, entry); } }}\[/code\]I downloaded the new libraries, but there isn't any good documentation on migrating. Any help is greatly appreciated.