我正在使用facebook-python-ads-sdk,并且我已经关注了官方网站:
https://developers.facebook.com/docs/marketing-api/tracking-specs#examples
和:
像素跟踪 您可以通过在广告的 tracking_specs 字段中指定跟踪像素来跟踪广告中不同像素的效果。假设您定义:
tracking_specs="[
{'action.type':'offsite_conversion','fb_pixel':1},
{'action.type':'offsite_conversion','fb_pixel':2},
{'action.type':'offsite_conversion','fb_pixel':3}
]"
问题是当我将它添加到广告时,它显示错误为
"error": {
"code": 100,
"is_transient": false,
"error_subcode": 1634019,
"error_user_msg": "Please check that a valid and non-empty object id is passed in.",
"error_user_title": "The id of the object (post, page, etc) passed in is invalid.",
"message": "Invalid parameter",
"type": "FacebookApiException",
"fbtrace_id": "HhCZrs9+8GH"
}
我的代码:
ad = Ad(parent_id=account_id)
ad[Ad.Field.name] = ad_name
ad[Ad.Field.adset_id] = adset_id
ad[Ad.Field.tracking_specs] = {'action.type': 'offsite_conversion', 'fb_pixel': 6029740175958}
当我删除 tracking_specs 时,它工作正常。我已将像素添加到 adset,它对我来说也工作正常。
ad_set[AdSet.Field.promoted_object] = {'pixel_id': 6015522072958}
所以像素id是正确的。
我做错了什么?感谢您的回答。