Okay, so here's the link I'm using:
 
https://www.google.com/calendar/feeds/default/private/full?rel=alternate
I am still getting the unauthorized error.  How come?
Here's one sample code I'm trying to run.
 
Dim service As Service = New Service
        Dim entry As EventEntry = New EventEntry
        'set title and content of the entry
        entry.Title.Text = "Testing event entry here gg"
        entry.Content.Content = "Content testing entry here gg"
        'set a location for the event
        Dim eventLocation As Where = New Where()
        eventLocation.ValueString = "Location of meeting right here gg"
        entry.Locations.Add(eventLocation)
        Dim eventtime As [When] = New [When](DateTime.Now.AddHours(1), 
DateTime.Now.AddHours(2))
        entry.Times.Add(eventtime)
        entry.Notifications = True
       
        Dim postUri As Uri = New Uri("
https://www.google.com/calendar/feeds/default/private/full?rel=alternate";)
        'send the request and receive the response
        Dim insertedEntry As AtomEntry = service.Insert(postUri, entry)

-- 
You received this message because you are subscribed to the Google
Groups "Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/calendar/community/forum.html

Reply via email to