I'd like to write some simple PHP code for a website, to get read-only access to a public Google calendar list of events using Google's calendar API V3. I simply need to display a list of upcoming events from the calendar on a web page. I've read the developer docs and looked at the getting started section and the get events example code but I'm a bit confused. I'm wondering:
Is there a simpler way to do what I need that avoids all this OAuth stuff? Is there a non-authenticated access method?
If not, It looks like I need to set up access for my app at code.google.com/apis/console/, and then generate an ApplicationName, ClientID, ClientSecret, RedirectURI and a DeveloperKey. The ApplicationName and DeveloperKey are straightforward enough to find in Google Console. But for the other items I need to create an OAuth 2.0 ClientID, which requires me to choose if the Application Type is a Web Application or a Service Account. What should it be for my scenario? In this scenario no user login should be required, as I'm not requesting access to their calendar-- it's just a public calendar I need access to.
What is the Redirect URI and how does it get used. How should I set it up?
Google's API sample gets and caches an Access Token in Session data. Then the code comments say not to do this, that you should use a database instead. Seriously? Do I really need to deal with caching the access token? If so, is there a built-in DB caching mechanism in Google API or how do you handle this?
I'm really looking for a simpler approach. Your guidance would be welcome!
Thanks.