【问题标题】:Equivalent of AD_PERFORMANCE_REPORT in Google Ads API? [closed]相当于 Google Ads API 中的 AD_PERFORMANCE_REPORT? [关闭]
【发布时间】:2021-09-14 16:08:04
【问题描述】:

我正在使用 Adwords API。但是对 Adwords 的支持将在 2022 年结束。我想迁移到新的 Google Ads API。我想知道 Google Ads 中的 AD_PERFORMANCE_REPORT(在 Adwords 中)的等价物。

例如, KEYWORD_PERFORMANCE_REPORT 的等效项是 keyword_view。

找了好久都没找到。

提前致谢。

【问题讨论】:

    标签: java api ads google-ads-api


    【解决方案1】:

    您正在寻找 ad_group_ad。

    这是我使用的查询:

    SELECT campaign.name, ad_group.name, customer.id, customer.descriptive_name,
                    campaign.advertising_channel_type,
                    segments.date,
                    ad_group_ad.ad.expanded_text_ad.headline_part1,
                    ad_group_ad.ad.expanded_text_ad.headline_part2, 
                    ad_group_ad.ad.expanded_text_ad.headline_part3,
                    ad_group_ad.ad.expanded_text_ad.description,
                    ad_group_ad.ad.expanded_text_ad.description2,
                    customer.currency_code,
                    metrics.average_cpc,
                    ad_group_ad.ad.shopping_product_ad,
                    metrics.cost_micros,
                    metrics.impressions,
                    metrics.clicks,
                    metrics.ctr,
                    metrics.conversions
                    FROM ad_group_ad
                    WHERE segments.date BETWEEN {date_range}
                    AND campaign.advertising_channel_type = 'SEARCH'
                    AND metrics.cost_micros > 0
                    ORDER BY segments.date
    

    请记住,对于购物广告,您需要使用 shopping_performance_view。

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2018-03-10
    • 2010-10-05
    • 2011-11-30
    • 1970-01-01
    • 2021-05-12
    • 1970-01-01
    • 2010-09-07
    相关资源
    最近更新 更多