vote up 8 vote down star
3

I don't see any obvious way to import ICS files into Google Calendar from the API docs here:

http://code.google.com/apis/calendar/developers_guide_protocol.html

And I'd greatly prefer not to have to parse them myself just to send the appointments into GCal. I'm looking for a programmatic solution, not something like import plugins for Thunderbird, Outlook, etc. Third party APIs to do the ICS parsing are acceptable, in any language. Any ideas?

flag

5 Answers

vote up 1 vote down

For my iCal2GCal app I'm using the Googlecalendar Ruby Gem to both parse .ics files and then add the events inside to a Googlecalendar. It might give you some ideas on how to go about it. You can check out the full source code.

link|flag
vote up 0 vote down

You shouldn't have to parse an ICS just to import it into Google Calendar, it is capable of importing them directly... From the end-user's web view, it's as easy as clicking Import Calendar. From the API, I would look at the Adding New Subscriptions section.

link|flag
This doesn't quite work, because I don't want to subscribe to a web-based calendar. The data I want to push in isn't available on the web. I want to basically upload a file and have Google calendar become the canonical store for it. – Joe Shaw Sep 25 '08 at 19:29
Ohhh, fair enough – Grank Sep 26 '08 at 5:10
vote up 0 vote down

I have created a simple open source .net utility to do just that, available at http://gcalicsimporter.codeplex.com/.

link|flag
vote up -1 vote down

I had the same question and found an answer here that might help you website: google.com/support/calendar/bin/answer.py?hl=en&answer=37118

If the ics file comes in attached to a message if they save it to their desktop they can then choose to ADD it to their google calendar and it will bring it in and ask which calendar (if they have multiple) they want to add it to.

link|flag
That link doesn't work for me. – Joe Shaw Jun 10 at 0:20
1  
He says he wants a programmatic solution. Using API precisely. – harshh Jul 10 at 7:35
vote up -2 vote down

google.com/support/calendar/bin/answer.py?hl=en&answer=37118

Import events from iCalendar or CSV files Print

To import events from iCalendar or CSV files, just follow these steps:

  1. Click the Add down-arrow button at the bottom of the calendar list on the left side of the page, and select Import Calendar.
  2. Click Browse and choose the file that contains your events, then click Open.
  3. Select the Google Calendar where you'd like to import events, then click Import.

Please note that recurring events may not be recognized when importing events from CSV files. In this case, individual items will be created for recurring events that fall between the dates you've selected.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.