Google AdWords Api报告输出不匹配(CRITERIA_PERFORMANCE_REPORT)

时间:2019-09-10 10:35:48

标签: php google-adwords

我在使用Google AdWords API时遇到了一些麻烦,我试图获取前一天的“标准效果报告”,但该API返回了错误的数据。

运行API时我将其作为输出

Array
    (
        [0] => Total
        [1] =>  --
        [2] =>  --
        [3] =>  --
        [4] =>  --
        [5] => 1753 //Impressions
        [6] => 43 //Clicks
        [7] => 31866177
    )

但是当我查看我的 AdWords信息中心时,它会显示 53次点击 2085次展示

为什么会这样。我在下面附加查询(PHP代码)。

$query = (new ReportQueryBuilder())
    ->select([
        'CampaignId',
        'AdGroupId',
        'Id',
        'Criteria',
        'CriteriaType',
        'Impressions',
        'Clicks',
        'Cost'
    ])
    ->from(ReportDefinitionReportType::CRITERIA_PERFORMANCE_REPORT)
    ->where('Status')->in(['ENABLED', 'PAUSED'])
    ->duringDateRange(ReportDefinitionDateRangeType::YESTERDAY)
    ->build();

0 个答案:

没有答案