我正在尝试使用Google Analytics(分析)Reporting API v4获取有关关键字,交易和广告点击的数据,但是我看到交易数量从0跃升至6。因此,如果我放弃零,则基本上交易数量不少于6。 。这是正常现象,还是Google服务器端存在一些硬编码限制?这是消息的主体(我正在使用Python)。 ga:transactions
为0、6,然后继续。
service = build(
'analytics',
'v4',
credentials=credentials,
cache_discovery=False
)
body = {
'viewId': view_id,
'dateRanges': [{
'startDate': start_date,
'endDate': end_date
}],
'dimensions': [
{'name': 'ga:adMatchedQuery'},
{'name': 'ga:adDestinationUrl'}
],
'metrics': [
{'expression': 'ga:adClicks'},
{'expression': 'ga:transactions'}
],
'samplingLevel': 'LARGE',
'includeEmptyRows': 'true'
}
res = service.reports().batchGet(
body={
'reportRequests': body
}
).execute()