Yekver
Yekver

Reputation: 5185

PHP API for Google Analytics

I wanna start using Google Analytics PHP API.

I found 2 libraries and I can't understand which one should I use and what is the main difference between them: gapi-google-analytics-php-interface and google-api-php-client

P.S. The main reason to use this API is requirement to work with goals.

Upvotes: 2

Views: 1027

Answers (2)

user734063
user734063

Reputation: 569

Would recommend following this tutorial.

Hello Analytics

Although, as I recall, the latest github library did not match the script and I had to find a previous version.

If you get a bunch of include errors, check the folder structure. I ended up downloading the previous version (which matched) and have had no issues using GA API since.

Upvotes: 0

Mihai Iorga
Mihai Iorga

Reputation: 39704

google-api-php-client is for Google API's and not specifically for Google Analytics.

gapi-google-analytics-php-interface is a library that connects to your Google Analytics account and extracts data. You should use this client.

GAPI (said 'g,a,p,i') is the Google Analytics PHP5 Interface.

Upvotes: 2

Related Questions