dev-master
9999999-dev http://shahariaazam.comSimple Google Analytics Reporting API
MIT
The Requires
- php >=5.4
Simple Google Analytics Reporting API
Clone this repo and run composer. composer install
then it will autoload the classes and you are done!, (*1)
Simple class to set up Oauth 2.0 with Google and query the Google Analytics API v3 with PHP. Curl is required!
The class supports getting the access tokens for web applications and service accounts registered in the Google APIs console.
See the documentation for further informations: https://developers.google.com/accounts/docs/OAuth2, (*2)
Just add the following line in your composer.json
and update your dependencies via running composer update command.
"shahariaazam/google-analytics-api-php": "dev-master"
, (*3)
Depending on the chosen application type, the setup is slightly different. This section describes both ways independently., (*4)
<?php require dirname(__FILE__) . '/vendor/autoload.php'; require dirname(__FILE__) . '/settings.php'; use Google\Api\Analytics; $client_id = $config['clientID']; $client_secret = $config['clientSecret']; $redirect_uri = $config['redirectURI']; $account_id = $config['accountID']; session_start(); $ga = new Analytics(); $ga->auth->setClientId($client_id); $ga->auth->setClientSecret($client_secret); $ga->auth->setRedirectUri($redirect_uri); $ga->prepareToken(); $ga->setAccessToken($_SESSION['oauth_access_token']); $ga->setAccountId($account_id);
Once you have a valid accessToken and an Account-ID, you can query the Google Analytics API. You can set some default Query Parameters that will be executed with every query., (*5)
$defaults = array( 'start-date' => date('Y-m-d', strtotime('-1 month')), 'end-date' => date('Y-m-d'), ); $ga->setDefaultQueryParams($defaults); $params = array( 'metrics' => 'ga:visits', 'dimensions' => 'ga:date', ); $visits = $ga->query($params); print ""; var_dump($visits); print "";
https://developers.google.com/analytics/devguides/reporting/core/dimsmets, (*6)
http://ga-dev-tools.appspot.com/explorer/, (*7)
Simple Google Analytics Reporting API
MIT