Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Most standard calendar exchange data format

I have a system (php/MySQL) with a scheduler application.

I'm about to create a service which would allow users to read their calendar from outlook, google, sunbird, ...

I'm wondering what is the most standard format today for exchanging calendar data.

Is it ical ?

like image 338
Pierre de LESPINAY Avatar asked May 21 '12 15:05

Pierre de LESPINAY


1 Answers

Yes, iCalendar - most recently documented in RFC 5545 - is probably your best bet. It won't be much fun, however... and expect to find various quirks in different implementations. If you can possibly stick to some simple subset of the standard, that's likely to help you immensely.

like image 174
Jon Skeet Avatar answered Oct 30 '22 23:10

Jon Skeet