Google Calendar API
Google has just released their web API for calendar (on Apr 20):
Google Calendar allows client applications to view and update calendar events in the form of Google data API ("GData") feeds. Your client application can use the Google Calendar data API to create new events, edit or delete existing events, and query for events that match particular criteria.
There are a few steps to use Google Calendar, all described in their help files:
- Create an account
- Get magic cookie for your calendar, or feed URL (something like http://www.google.com/calendar/feeds/userID/private-magicCookie/full)
- Request the feed, which returns a XML file;
- Post back an event or comments with a XML file.
We'll be back shortly with a full featured example using PHP.