Reputation: 69
I'm building a calendar service with php (code igniter framework) and would like to import google calendar from my users.
Anyone could show me the light?
Upvotes: 0
Views: 873
Reputation: 59002
You should use their REST interface. Almost everything you need is covered on this page:
http://code.google.com/apis/calendar/v3/getting_started.html#REST
There is a PHP client for GData on Google Code:
Examples can be found here.
Upvotes: 2