This article introduces the Google Calendar Data API, demonstrates how you can use it to browse user-generated calendars; add and update calendar events; and perform keyword searches. Also, it illustrates how to integrate data from the Google Calendar service into a PHP application using both SimpleXML and the Zend client library.
The web is flooded with prebuilt dynamic software packages now, but the next big thing for web programmers is clearly going to be seemless data interchange (notably different from “Submit to X!”).
Talking to APIs, REST, SOAP, scraping RSS and other XML, that’s the future. The big guys already do it, the rest won’t be far behind. Especially as dynamic languages start shipping with functions compiled in that can do things like this. SimpleXML is cool, but imagine a function that could parse valid RSS out of the box. Imagine being able to feed a function an array and have it spit out valid RSS or XML.
…is making me really sleepy, thanks and good night!
// Periods used to simulate spaces on the Dubyas
wakeup();
for(Article article : OSNews.getLatestArticles())
{
….if(article.matches(“my interests”))
….{
……..article.read();
….}
}
sleep();
// EDIT: spelling!
Edited 2008-07-10 20:41 UTC
…check out the Zend Framework – there’s loads of different Google features (including calendar, iirc..)