我使用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是正确的。
我做错了什么?谢谢你的回答。
答案 0 :(得分:0)
该死的,我向https://graph.facebook.com/2.5/ {Ad_ID}提出了GET请求, 我之前已在广告中添加了跟踪规范。
然后,我得到了:
"tracking_specs": [
{
"action.type": [
"offsite_conversion"
],
"offsite_pixel": [
"6015521805358",
"6015522072958",
"6029740098558",
"6029740175958"
]
},
{
"action.type": [
"post_engagement"
],
"page": [
"380039845369159"
],
"post": [
"1062663363773467"
]
}
],
您是否注意到了差异?
offsite_pixel 字段。 在上面的例子中,它是 fb_pixel 。 ¯\(°_°)/¯