无法在Google AnalyticsAPI PHP中获取访问令牌?

时间:2013-07-30 06:52:48

标签: php google-analytics google-api google-analytics-api

include('GoogleAnalyticsAPI.class.php');

$ga = new GoogleAnalyticsAPI('service');
$ga->auth->setClientId('your_client_id'); // From the APIs console
$ga->auth->setEmail('your_email_addy'); // From the APIs console
$ga->auth->setPrivateKey('/super/secure/path/to/your/privatekey.p12');
$auth = $ga->auth->getAccessToken();

我获得$ ga中的所有值,除了AccessToken.I已经给出了所有路径,电子邮件,客户端ID。如果我打印$ auth,没有显示任何内容。我该怎么做才能获得访问令牌? 我提到了这个网站https://github.com/wanze/Google-Analytics-API-PHP

提前致谢。

0 个答案:

没有答案