quick question here : I am using Google Analytics reporting API v4 to perform some extractions from GA data, all working as desired except for one set of Audience data.
Basically I'm querying Audience data with the following dimensions and metrics(also as described here : https://developers.google.com/analytics/devguides/reporting/core/dimsmets#view=detail&group=audience) :
Metrics :
ga:visits
Dimensions :
ga:dateHourMinute
ga:dataSource
ga:userAgeBracket
ga:userGender
ga:interestInMarketCategory
If I send a request with this combination, data is returned normally. However, if I add one more dimension of interest such ga:city
, the API doesn't throws any errors, but also does not return any data.
Weird thing is that for other combination of dimensions/metrics with ga:city
simply works correctly.
Any ideas on why it is not returning data, perhaps, how to make this work would be greatly appreciated since I'm stuck with this for some days :-|
Thanks in advance everyone !