Hi,
I've been hooking into the Google Calendar API on a website to display
upcoming dates and events, and for the majority of the time it's been
working fine. It would work by searching for a specific event with the
following code:
var service = new
google.gdata.calendar.CalendarService('event-calendar-integration');
var query = new google.gdata.calendar.CalendarEventQuery(--calendar
url--);
// Set up our query
query.setOrderBy('starttime');
query.setSortOrder('ascending');
query.setFutureEvents(true);
query.setSingleEvents(true);
query.setMaxResults(5);
query.setAllowIncomplete(true);
// Search for that event and location combination, baby.
query.setFullTextQuery(event + '-' + loc);
service.getEventsFeed(query.getUri(), listCourses, gcError);
Recently, though, the setFullTextQuery has been broken. Every time this does
a search it can't find any relative events — they're 100% in the database.
It shows events if we remove the FullTextQuery, and it works if the
FullTextQuery only searches for one word.
Has something changed, am I being an idiot (always likely, by the way), or
is there something else I'm unaware of going on?
Thanks very much.
--
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