Google Adwords API 查询每次点击的转化次数
Posted
技术标签:
【中文标题】Google Adwords API 查询每次点击的转化次数【英文标题】:Google Adwords API query the number of conversions per click 【发布时间】:2014-02-15 11:36:54 【问题描述】:我想使用 SOAP API 在 google adwords 报告中查询每次点击的转化次数。不幸的是以下查询(Python),
# Create report definition.
report =
'reportName': 'Last 30 days ADGROUP_PERFORMANCE_REPORT',
'dateRangeType': 'LAST_30_DAYS',
'reportType': 'ADGROUP_PERFORMANCE_REPORT',
'downloadFormat': 'CSV',
'selector':
'fields': ['CampaignId', 'AdGroupId', 'Id',
'Impressions', 'Clicks', 'Cost',
'Conv1PerClick',
'CampaignName','AdGroupName']
,
# Enable to get rows with zero impressions.
'includeZeroImpressions': 'false'
导致以下错误
AdWordsReportError: HTTP code: 400, type: 'ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT', trigger: 'Conv1PerClick', field path: ''
Google 文档 (https://developers.google.com/adwords/api/docs/appendix/reports) 似乎表明这样的报告应该有一个 conv1PerClick 字段(我也尝试删除第一个字母的大写,出现类似错误)。
有人知道如何查询广告组关于每次点击转化的统计信息吗?
【问题讨论】:
【参考方案1】:不确定我是否正确理解您,但该字段称为Conversions
,而不是Conv1PerClick
。如果您下载 XML 格式的报告,则相应的字段属性名称使用为 conv1PerClick
,但在 v201402 中这发生了变化,以符合这些指标计算方式的一些变化:
【讨论】:
以上是关于Google Adwords API 查询每次点击的转化次数的主要内容,如果未能解决你的问题,请参考以下文章
如何使用相同的 Google Adwords API 服务获得平均搜索量和平均 CPC?