I have never used the Goodle API before, and now I'm trying to access my Google Calendar via the API.
I downloaded google-api-php-client-master.zip file, extracted the directory ... / src / Google and copied it to my web server (hosted by a third party, which means that I canβt install anything), According to the samples my code should start with
<?php require_once "Google/Client.php"; require_once "Google/Service/Calendar.php"; ....
but Client.php throws an error:
Fatal error: require_once (): Could not open the required value '' (include_path = '.: / Usr / lib / php5.4') in / homepages / 39 / d396519017 / htdocs / VC2 / Google / Client.php on line 18
Client.php-Line 18 is the string require_once realpath(dirname(__FILE__) . '/../../autoload.php');
But I can not fint autoload.php anywhere. What am I missing?
Thanks!
source share