我有一个应用程序可以从我们的Google Adwords帐户中获取数据。
特别是它会获得广告系列列表及其结果(点击次数,费用等)。问题是,尽管谷歌API定义规范说:
"广告系列效果报告包含所有汇总的统计信息 默认情况下,广告系列一级每个广告系列一行"。
我只获得其列中包含非零值的广告系列(例如,已至少显示过一次)。
您是否知道**如何在报告中包含所有广告系列,即使其值为
非常感谢。
编辑:当广告系列的展示次数恰好为0时,就会发生这种情况。
答案 0 :(得分:0)
我终于找到了获得它的方法:
// Report Creation
$reportDefinition = new ReportDefinition();
$reportDefinition->selector = $selector;
$reportDefinition->reportName = 'Adgroup performance report';
$reportDefinition->reportType = 'CAMPAIGN_PERFORMANCE_REPORT';
$reportDefinition->downloadFormat = 'CSV';
// Exclude criteria that haven't recieved any impressions over the date range.
$reportDefinition->includeZeroImpressions = TRUE;
最后一行指定也必须包含展示次数为零的广告系列。默认情况下,它的值为false,将其设置为true,您将获得所有信息。