我正在使用api google adwords生成报告,我可以将其用于广告系列,但我无法生成广告报告(我需要获取AdId,AdName,点击次数,展示次数费用以及许多其他数据)。 我应该使用什么类型的报告? 我试过:
vector<A>
以及
AD_PERFORMANCE_REPORT
但它会将错误作为“未知字段”返回,或者它不会返回任何内容。
感谢。
答案 0 :(得分:1)
我找到了解决方案,现在是:
$dateRange = sprintf('%d,%d',
date('Ymd', strtotime('-7 day')), date('Ymd', strtotime('-1 day')));
$reportQuery = 'SELECT Id,Headline, Impressions, Clicks, Cost, AdGroupId '
. ' FROM AD_PERFORMANCE_REPORT '
. ' DURING '.$dateRange;
// Download report.
ReportUtils::DownloadReportWithAwql($reportQuery, $filePath, $user,$reportFormat, $options);
报告为:AD_PERFORMANCE_REPORT,名称变量为Headline。 希望它有所帮助。