Api Google Adwords 我们如何在当月但每天获取一个活动的报告?

Api Google Adwords How we can get report for a one campaign during the current month but per day?

我需要使用 api google 广告词生成报告,仅针对一个营销人员,在当月但每天,这是我的查询:

  $reportQuery = 'SELECT CampaignId,CampaignName, Impressions, Clicks, Cost '
        . ' FROM CAMPAIGN_PERFORMANCE_REPORT '
        . ' WHERE CampaignId = '.$campaignId.' DURING this_month';

我想得到这种格式的结果:

date | impressions | clicks | ...
01/11| 12356785    | 23561  | ...
02/11| 23567985    | 3561   | ...
03/11| 82356785    | 56892  | ...
04/11| 62356785    | 562234 | ...

可能吗?如果不是,我们如何在不下载文件的情况下获得报告? 谢谢

Date 字段添加到您的查询中应该可以解决问题。如前所述 hereDate 具有 "Segment" 行为,因此它会为您提供一个新行,其中包含所有其他指标,用于每个单独的值。