使用市场营销API,我正在创建广告来宣传带有广告系列目标“ PAGE_LIKES”的网页。广告系列创建成功,但在创建AD_SET时显示以下错误:
“广告集定位不正确”
我正在使用此目标对象。
targeting: {
age_min: 18,
geo_locations: geo_locations,
locales: [6],
genders: gender_list,
interests: interests_list
}
该对象与目标(REACH,IMPRESSION)等配合良好, 所以建议我任何解决方法
答案 0 :(得分:0)
如果广告系列是针对喜欢网页的用户,则广告集的定位需要通过excluded_connections
参数(指定您要推广的网页的页面ID)排除网页的当前粉丝
尝试一下:
targeting: {
age_min: 18,
geo_locations: geo_locations,
locales: [6],
genders: gender_list,
interests: interests_list,
excluded_connections: [{'id': <PAGE ID HERE>}]
}
资料来源: Facebook Connections
下的https://developers.facebook.com/docs/marketing-api/targeting-specs/