Actually I just found a way to do it.

In short...

The Python API method we are looking at is:

query = gdata.calendar.service.CalendarEventQuery('default',
'private', 'full', text_query).

The part I had difficulty with was the "default" and "private" part of
this method call.

The solution was for me to use the Magic Cookie "private-XXXXX" URL.

So all I ended up doing was replacing "default" with my
"[EMAIL PROTECTED]" address
and replacing "private" with my Magic Cookie "private-XXXXX" string.
And voila, I searched a private calendar
give the private URL for all events.

In my application users will provide me with the private-XXXXX and
[EMAIL PROTECTED] addresses.  I just need to show them.

Thanks,

~= Chris =~

p.s. Go Yello Jackets!



On Oct 6, 2:15 pm, "Austin (Google)" <[EMAIL PROTECTED]> wrote:
> Hi,
> Query or full-text search on calendar event can only be performed for the
> event title and its content description.  Furthermore, query or any request
> for that matter can only be directed against a single calendar (default or
> secondary), thus that makes it more improbable to perform query across
> multiple calendars.
>
> Austin
>
> On Fri, Oct 3, 2008 at 5:56 AM, Chris Jackson <[EMAIL PROTECTED]
>
> > wrote:
>
> > Hello,
>
> > The problem I'm trying to solve is querying calendar events given any
> > Calendar ID.  If the calendar
> > has to be made public first, that's okay too.  I have yet to find a
> > suitable Python API method to do this.
>
> > The closest I've gotten is CalendarEventQuery with the
> > "default" (primary) calendar.  These do not
> > query my secondary calendars either by the way, however, the ideal
> > situation I would like is given a Calendar ID
> > query for an event.  I will be doing this for a list of Calendar IDs
> > so I can query against Calendars even if they
> > are not listed as one of my secondary calendars.
>
> > Any ideas?
>
> > Thanks,
>
> > ~= Chris =

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