无法创建Google_Client对象

时间:2014-07-22 20:58:07

标签: php google-analytics-api

我正在尝试创建一个简单的php来获取我的Google Analytics数据。 但是在运行脚本时我仍然得到错误500。我决定评论所有代码设置ID,开发人员密钥等,并在创建Google_Client对象时出现错误。

在Google_Client.php中我有 set_include_path('C:/.../ Google_API / src');

我的index.php位于 C:/.../ Google_API / index.php

<?php
session_start();

require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_AnalyticsService.php';

$client = new Google_Client();
print 'test'; // not printed
/* rest of code */
?>

我真的不知道我做错了什么。在创建Google_Client之前还有其他什么需要配置吗?

我目前使用的库是here

1 个答案:

答案 0 :(得分:0)

卷曲未激活。转到php.ini文件,从;

行中删除extension=php_curl.dll

不要忘记重新启动网络服务器。