0

I implemented a php application that creates events in google calendar. But i need also to create resources, and i found the documentation for Google Apps Calendar Resource API

My first question is: where can I download the API files. And second: i can use this in PHP? Because in the examples that they provide, they use only .NET and Python.

Thank you!

1 Answers1

0

This API uses an older Google APIs technology stack called GData. There is a GData PHP client library built into the Zend framework, but it doesn't support OAuth2 and doesn't include support for this particular API. You're only option is to construct the OAuth2 tokens, XML body, and HTTP requests yourself using the documentation as a guide.

Eric Koleda
  • 12,420
  • 1
  • 33
  • 51