Core Reporting API的官方教程告诉我们要包含两个文件:
require_once 'google-api-php-client/src/Google_Client.php';
require_once 'google-api-php-client/src/contrib/Google_AnalyticsService.php';
但是,正如我们在GitHub页面(https://github.com/google/google-api-php-client)上看到的那样,没有Google_Client.php
文件(事实上,我无法在文件夹内的任何位置找到它)。官方教程是否过时了?我该怎么办?
答案 0 :(得分:4)
请尝试以下代码,请提供autoload.php
个文件...
require_once 'google-api-php-client/autoload.php';
$client = new Google_Client();
$client->setApplicationName("Client_Library_Examples");
$client->setDeveloperKey("YOUR_APP_KEY");
$service = new Google_Service_Books($client);