I am using GoogleAnalytics API library on my Codeigniter site, but i didn't find there and on Google API guide - how to get results for a one exact page.

Say i've got page http://www.example.com/company/82808, and i make request to GA API and get pageviews and visitors metrics for this URL - example.com/company/8280.

Is this possible?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Yes, it's possible. Apply a filter for ga:pagePath

Include in the request:

Dimension: ga:pagePath

Metrics: ga:pageviews,ga:visitors

Filter: filter=ga:pagePath==/company/82808 use this exact match if that is how the page is recorded in GA. If it's recorded like /company/82808/index.php then you can use filter=ga:pagePath==/company/82808/index.php or ga:pagePath=~/company/82808 for a contains match.

Test out queries in Google's Data Feed Query Explorer

link|improve this answer
actually author of a library gave me exact comment on github: github.com/ronan-gloo/Codeigniter-Google-Analytics-library/… – shershen Jan 22 at 14:07
@shershen Thanks for the accept. +1 back to you. – jk. Jan 22 at 17:03
feedback

Your Answer

 
or
required, but never shown

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