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!
This should help you
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.