我正在通过Facebook API创建相似的自定义受众,但当我试图从同一种子创建第二个受众时,我总是收到这个错误消息:
"(#2654) Can't create a duplicate lookalike: You've already created a Lookalike Audience with the same source, country and size. Please try using a different source or different specifications."
在本例中,国家/地区和种子相同,但两个受众的比率不同。当我在浏览器中通过adsmanager创建完全相同规范的外观时,它们被成功创建。
以下是我发送的有效负载的示例:
//Audience successfully created
{
name: "LLA0%-FB | Engaged | 30 (2020-09-23) (US)",
subtype: "LOOKALIKE",
origin_audience_id: "123456789",
lookalike_spec: {
type: "reach",
ratio: 0.05,
allow_international_seeds: "on",
location_spec: {
geo_locations: { countries: ["US"] },
},
},
}
//Error
{
name: "LLA20%-FB | Engaged | 30 (2020-09-23) (US)",
subtype: "LOOKALIKE",
origin_audience_id: "123456789",
lookalike_spec: {
type: "reach",
ratio: 0.2,
allow_international_seeds: "on",
location_spec: {
geo_locations: { countries: ["US"] },
},
},
};
发布于 2020-10-02 23:12:39
api请求的问题是您在api请求中同时指定了类型和比率。因此,facebook请求会忽略该比率值。请参阅https://developers.facebook.com/docs/marketing-api/audiences/guides/lookalike-audiences/#lookalike-audiences使用类型或比率。您应该像这样使用比率
{
name: "LLA0%-FB | Engaged | 30 (2020-09-23) (US)",
subtype: "LOOKALIKE",
origin_audience_id: "123456789",
lookalike_spec: {
type: "reach",
ratio: 0.05,
allow_international_seeds: "on",
location_spec: {
geo_locations: { countries: ["US"] },
},
},
}
https://stackoverflow.com/questions/64141878
复制相似问题