i'm trying to get my events so i started with the basic and grab all
of them as shown here
http://code.google.com/apis/calendar/developers_guide_dotnet.html#RetrievingWithoutQuery
// Create the query object:
EventQuery query = new EventQuery();
query.Uri = new Uri("http://www.google.com/calendar/feeds/[EMAIL PROTECTED]/
private/full");
// Tell the service to query:
EventFeed calFeed = service.Query(query);
i replaced the [EMAIL PROTECTED] with the email i'm using, and the one the
service credentials are set to.
however it always returns 0 entries in the Entries property.
Am i missing a step here?
also the ultimate goal is going to be to delete an entry based on it's
title, am i just heading in the complete wrong direction?
thanks, sorry for the amateurish question, but i am still a student.
--~--~---------~--~----~------------~-------~--~----~
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://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---