Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

been working on this for two days now and seem to be getting nowhere.

I am using the GAPI Google analytics PHP class. This is the current code I have the now:

$ga->requestReportData("[UID]",array('day'),array('visits'), array("day"));

What I want to do is get the number of "pageviews" from the "past 7 days". So output would be something like:

<?php foreach($ga->getResults() as $result) { ?>
    Date: <?php echo $result; ?>
    Page Views: <?php echo $result->getPageviews(); ?>
<?php } ?>

I am new to Google analytics API so not sure where to start. Thanks for any help!

share|improve this question

2 Answers

up vote 3 down vote accepted

This should help you

   <?php
  require 'gapi.class.php';

 $gaEmail = 'youremail@email.com';
 $gaPassword = 'your password';
 $profileId = 'your profile id';

 $dimensions = array('pagePath','country', 'region', 'city'); 
 $metrics = array('visits');
 $sortMetric=null;
 $filter=null;
 $startDate='2011-02-01';
 $endDate='2011-02-28';
 $startIndex=1;
 $maxResults=10000;

 $ga = new gapi($gaEmail, $gaPassword);

$ga->requestReportData($profileId, $dimensions, $metrics, $sortMetric, $filter,        $startDate, $endDate, $startIndex, $maxResults);

 $totalPageviews = $ga->getPageviews();

 foreach ($ga->getResults() as $result) {
    $visits = $result->getVists();
    print $visits; 
  }

 ?>

Keep in mind to turn off your 2-step verification for the google account. If you don't , it will throw you a bad request error despite the validity of your account info.

share|improve this answer
Hi, i new to google analytics, can you please tell me where we can turn off 2 step verification – Sonal Khunt Apr 24 '12 at 9:09
In your Google Accounts page. – ladiesMan217 Apr 24 '12 at 9:12

Will like to make an addition to @ladiesMan217 , we can create application specific passwords if we have 2 steps verification on.

As far as GAPI is concerned i have created a class which will give lot of information but by using couple of methods. You can download the class here http://www.thetutlage.com/post=TUT217

<?php
error_reporting(0); // it is important as filtering tend to leave some unwanted errors 
include_once( 'class.analytics.php' );
define('ga_email','your_analytics_email');
define('ga_password','your_analytics_password');
define('ga_profile_id','your_analytics_profile_id');

// Start date and end date is optional
// if not given it will get data for the current month
$start_date = '2012-05-28';
$end_date = '2012-06-27';

$init = new fetchAnalytics(ga_email,ga_password,ga_profile_id,$start_date,$end_date);

$trafficCount = $init->trafficCount();
$referralTraffic = $init->referralCount();
$trafficCountNum = $init->sourceCountNum();
$trafficCountPer = $init->sourceCountPer();

?>

First Method trafficCount will give you ( PageViews , Visits, Bounce Rate, Time spend of site, New Visits )

Second Method referralCount will give you ( referral url and total number of hits from that url )

Third Method sourceCountNum will provide you traffic source like ( Direct Traffic, Organic ,Referral, Feed, Emails and Others )

Last Method sourceCountPer will provide same info as the 3rd one with one difference here the information will be in Percentage.

Hope it will be of some help and please let me know in case of any bugs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.