I'm trying to work out how to get the top 5 pages from my Google Analytics Project API in PHP. So far I've made the following code, but it doesn't appear to work - any ideas?
private function getTopPages($profileId) {
$optParams = array(
'sort' => 'ga:pageviews',
'max-results' => '5');
return $this->analytics->data_ga->get(
'ga:' . $profileId,
'2012-09-01',
'2012-09-30',
'ga:pagePath',
$optParams);
}
private function getTopPages($profileId) {
$optParams = array(
'max-results' => 5,
'dimensions' => 'ga:pageTitle,ga:pagePath',
'sort' => '-ga:pageviews',
);
return $this->analytics->data_ga->get(
'ga:' . $profileId,
'2012-09-01',
'2012-09-30',
'ga:pageviews',
$optParams);
}
inspired by: http://axiacore.com/blog/how-get-list-most-popular-pages-google-analytics-python/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With