如何在Facebook营销中的产品集中为广告添加不同的产品?

时间:2016-09-07 07:28:41

标签: python django facebook python-2.7 facebook-graph-api

我已经完整地阅读了动态facebook营销的文档。还成功创建了基于自定义受众和像素事件的广告。但问题是,每次创建广告时,它都会在广告模板中显示相同的产品。

以下是设置产品集

的代码
    product_set = ProductSet(None, <CATALOG ID>) # <CATALOG ID>
    product_set[ProductSet.Field.name] = 'Product Set'
    product_set[ProductSet.Field.filter] = {
        'product_type': {
            'i_contains': 'example product type',
        },
    }
    product_set.remote_create()
    product_set_id =  product_set[ProductSet.Field.id]

设置广告系列和adset后创建广告的代码:

    adset = AdSet(parent_id='<ACCOUNT_ID>')
    adset[AdSet.Field.name] = 'Product Adset'
    adset[AdSet.Field.bid_amount] = 9100
    adset[AdSet.Field.billing_event] = AdSet.BillingEvent.link_clicks
    adset[AdSet.Field.optimization_goal] = AdSet.OptimizationGoal.link_clicks
    adset[AdSet.Field.daily_budget] = 45500
    adset[AdSet.Field.campaign_id] = campaign_id
    adset[AdSet.Field.targeting] = {
        Targeting.Field.publisher_platforms: ['facebook', 'audience_network'],
        Targeting.Field.device_platforms: ['desktop','mobile'],
        Targeting.Field.geo_locations: {
            Targeting.Field.countries: ['IN'],
        },
        Targeting.Field.product_audience_specs: [
            {
                'product_set_id': product_set_id,
                'inclusions': [
                    {
                        'retention_seconds': 2592000,
                        'rule': {
                            'event': {
                                'eq': 'ViewContent',
                            },
                        },
                    },
                ],
                'exclusions': [
                    {
                        'retention_seconds': 259200,
                        'rule': {
                            'event': {
                                'eq': 'Purchase',
                            },
                        },
                    },
                ],
            },
        ],
        Targeting.Field.excluded_product_audience_specs: [
            {
                'product_set_id': product_set_id,
                'inclusions': [
                    {
                        'retention_seconds': 259200,
                        'rule': {
                            'event': {
                                'eq': 'ViewContent',
                            },
                        },
                    },
                ],
            },
        ],
    }
    adset[AdSet.Field.promoted_object] = {
        'product_set_id': product_set_id,
    }

    adset.remote_create()
    adset_id = adset[AdSet.Field.id]

你们可以帮助我从产品组中创建动态产品吗?

1 个答案:

答案 0 :(得分:0)

您的产品目录中是否包含product_type包含&#39;示例产品类型的项目&#39;?您可以拨打api电话,以/<PRODUCT_SET_ID>?fields=product_count,products

验证该产品集下的产品数量

当广告开始投放时,它会自动从产品集中自动呈现相关产品。

对于广告素材预览,您可以指定要在预览中呈现的特定商品:例如, product_item_ids=["catalog:1000005:MTIzNDU2"]

有关动态广告的广告素材预览的详细信息:https://developers.facebook.com/docs/marketing-api/dynamic-product-ads/ads-management/v2.9