gpt4 book ai didi

python - 使用 Adwords API 将自定义受众群体添加到广告组

转载 作者:太空宇宙 更新时间:2023-11-03 21:09:53 24 4
gpt4 key购买 nike

我正在使用 Adwords 的 python 库,并且需要选择要链接到给定广告组的受众群体。我需要选择具有再营销和类似、自定义意图或亲和性的受众群体。

创建广告组时如何设置受众群体?

最佳答案

经过一些测试后,这里是如何做到这一点:

  1. 创建广告组并获取其 ID
  2. 使用 AdGroupCriterionService 添加受众群体

以下是我想要使用的 3 种受众群体的代码(self.client 正在启动 adwords.AdWordsClient.LoadFromStorage):

        ad_group_criterion_service = self.client.GetService('AdGroupCriterionService', version='v201809')
audience_custom_affinity = {
'xsi_type': 'BiddableAdGroupCriterion',
'adGroupId': 'my_ad_group_id',
'criterion': {
'xsi_type': 'CriterionCustomAffinity',
'type': 'CUSTOM_AFFINITY',
'customAffinityId': 'my_audience_id'
}
}
audience_custom_intent = {
'xsi_type': 'BiddableAdGroupCriterion',
'adGroupId': 'my_ad_group_id',
'criterion': {
'xsi_type': 'CriterionCustomIntent',
'type': 'CUSTOM_INTENT',
'customIntentId': 'my_audience_id'
}
}
audience_remarketing = {
'xsi_type': 'BiddableAdGroupCriterion',
'adGroupId': 'my_ad_group_id',
'criterion': {
'xsi_type': 'CriterionUserList',
'type': 'USER_LIST',
'userListId': 'my_audience_id'
}
}
operations = [
{'operator': 'ADD',
'operand': audience_custom_affinity},
{ 'operator': 'ADD',
'operand': audience_custom_intent},
{'operator': 'ADD',
'operand': audience_remarketing}
]
ad_group_criterion_service.mutate(operations)

关于python - 使用 Adwords API 将自定义受众群体添加到广告组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55141435/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com