我正在为Adwords使用python librairy,我需要选择要链接到给定广告组的受众群体。我需要选择具有再营销和类似,自定义意图或兴趣相似的受众。

制作广告组时如何设置受众群体?

最佳答案

因此,在进行一些测试之后,请执行以下操作:


创建广告组并获取其ID
使用AdGroupCriterionService添加受众


这是我要使用的三种类型的受众的代码(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/

10-10 04:56