I'm trying to get (from the API) the visit counts and goal counts for
all keyword/search engine combinations.
My metrics are fine using:
dataquery.Metrics = "ga:visits,ga:goalCompletionsAll";
And the filter works fine as:
dataquery.Filters = "ga:keyword!=(not set);ga:keyword!=(content
targeting)";
But I can't get the search engine domain name. I've tried the
following:
dataquery.Dimensions = "ga:keyword,ga:referralPath";
dataquery.Dimensions = "ga:keyword,ga:source";
For ga:referralPath it always states "(not set)"
For ga:source I get the search engine, but not at the level of
granularity I require. I would like "
google.com", "
google.co.uk", etc.
However, it just returns "google".
How can I get the full domain name for search requests?