我正在使用适用于Google AdWords API v201209的.NET客户端库下载广告效果报告(CSV格式)。
我下载的每个报告中的最后一行数据都是汇总行。示例如下:
Total, --, --, --, --, --, --, --, --, --,2.6, --, --, --,516,13,16
我不需要汇总数据。目前我不得不编写代码来手动删除它或处理在解析过程中跳过这一行。
有没有办法将此行排除在下载的报告中?
答案 0 :(得分:2)
对于使用googleads-php-lib的php用户:
$reportUtils = new ReportUtils();
$report = $reportUtils->DownloadReport($reportDefinition, null, $user, array('skipReportSummary'=>true));
答案 1 :(得分:1)
此刻不可能,我很害怕。我通常在每行的开头请求一个数字字段,所以我可以过滤掉我不想要的行;这也适用于标题行,也不能删除。
答案 2 :(得分:1)
我使用版本201509.您可以在report_downloader参数中抑制总计以及报表头和列标题
<script src="interests/js/jquery-1.12.0.min.js" type="text/javascript"> </script>
<script src="interests/js/jquery.dataTables.min.js" type="text/javascript"></script>
答案 3 :(得分:0)
截至目前,您可以设置HTTP header:
skipReportSummary: true|false | If true, report output
will not include a summary
row containing the report
totals. If false or not
specified, report output
will include the summary row.