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?

link|improve this question

Is there any progress on this question? Is it really impossible to import a ics into Google Calendar without parsing it before? – theomega Jul 18 '11 at 14:03
The top two answers below seem plausible, but I was not able to test them and get them working. And now I no longer have an urgent need for the functionality. If either the C# or the Ruby solution below work, let me know! – Joe Shaw Jul 24 '11 at 2:10
feedback

4 Answers

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

link|improve this answer
Looks good, although I couldn't get it running on Mono on OS X. – Joe Shaw Apr 2 '10 at 21:14
feedback

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|improve this answer
Unfortunately the googlecalendar rubygem doesn't seem to work with Google Apps accounts, so I can't test this. – Joe Shaw Apr 2 '10 at 21:14
feedback

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|improve this answer
1  
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
feedback

I installed the gcalicsimporter and it got the date right, but the time was wrong and so was the enddate and endtime.

It would be better if you don't have to put in your account and password but it just oaths it.

Close, but not yet.

link|improve this answer
feedback

protected by Community Aug 9 '11 at 15:21

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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