无法在Google API PHP客户端库中找到Google_Client.php

时间:2014-11-06 04:49:39

标签: php google-analytics-api

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文件(事实上,我无法在文件夹内的任何位置找到它)。官方教程是否过时了?我该怎么办?

1 个答案:

答案 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);