Hi,

The link to the event that is human-readable on the browser is the
"alternate" link.

I am assuming you are using the .NET client library.  With the .NET
client library, this is how you can retrieve events from an EventFeed
and print out each event title and their alternate link -

        public void retrieveEvent() {

          EventQuery query = new EventQuery();
          query.Uri = new
Uri("http://www.google.com/calendar/feeds/default/private/full";);
          EventFeed feed = calendarService.Query(query);                        
        

          foreach (EventEntry entry in feed.Entries) {
            Console.WriteLine("Event Title = " + entry.Title.Text);
            Console.WriteLine(entry.AlternateUri.Content);
          }     
        }

Hope that helps,
Austin


On Tue, Apr 1, 2008 at 6:31 AM, Alex Launi <[EMAIL PROTECTED]> wrote:
>
>  Does anyone know what the element in the EventFeed is to get the
>  event's web address for opening up a browser to the event details
>  page? From the documentation it looked like it was <link ... /> but I
>  was unable to access that. Thanks for your help.
>  >
>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to