i'm developing a sidebar to integrate google analytics stats beside my posts details in the administration.
To understand google analytics api I made some test using the data feed query explorer provided by Google itself.
After few tests I noticed a strange behavior that i'll resume with a practical example. I need to know what keywords bring people to a given url and I want to know how many clicks I got from any of these keywords. I also want 3 different data ranges for these informations: daily keywords, monthly keywords and overall keywords...
This is the set of parameters I used:
ids = <myTableId>
dimensions = ga:keyword
metrics = ga:visits
segment =
filters = ga:pagePath=~<myUrl>$
sort =
start-date =
end-date =
start-index =
max-results =
max-results = 50
When I try to retrieve data for a single day (eg. start-date = 2011-12-27 and end-date = 2011-12-27) everything seems to work properly.
For example for my url /programmazione/lo-schiaccianoci-in-3d-andrei-konchalovsky-2-dicembre-2011.film I got the following results:
ga:keyword ga:visits
--- ---
(not set) 1
lo schiaccianoci film a roma 1
lo schiaccianoci film programmazione roma 1
lo schiaccianoci film roma 1
lo schiaccianoci programmazione a roma 1
programmazione film lo schiaccianoci a roma 1
schiaccianoci film programmazione 1
schiaccianoci film roma 1
If i extend my time range I start to have strange behaviours. If I extend the request to all the day of the same month of the previous request i expected to have at least all the keywords retrieved for the single day (maybe with an higher number of clicks), but anyway i got fewer results (and also a warning that says "This result is based on sampled data"):
ga:keyword ga:visits
--- ---
(not set) 31
lo schiaccianoci film roma 2011 31
If i try to retrieve allover data (from the first day I created the page to the current day) it gets even worse: I got no data!
So the question is What's wrong with my approach?
--- UPDATE ---
I found this bug report: http://code.google.com/p/analytics-issues/issues/detail?id=160 Do you think it's related?