Most standard calendaring formats

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

I am going to create a service that will allow users to read their calendar from Outlook, google, sunbird, ...

I am wondering what is the most standard calendar data exchange format today.

Does this?

+6
source share
1 answer

Yes, iCalendar - the last time documented in RFC 5545 - is probably your best bet. However, it will not be very fun, and we expect to find different quirks in different implementations. If you can stick to some simple subset of the standard, this can help you a lot.

+7
source

Source: https://habr.com/ru/post/916277/


All Articles