我正在使用 Segment Asset Customization 来生成特定于国家/地区的创意,我已经生成了相同的,但是在使用 facebook 广告 API 创建广告时我无法使用该创意。
用于细分资产定制的资产 Feed 请求
{
"object_story_spec": {
"page_id": <<page_id>>
},
"asset_feed_spec": {
"videos": [
{
"url_tags": "VIDEO1__ES.mp4",
"video_id": "509482663810402",
"thumbnail_url": "<<thumbnail_url>>",
"adlabels": [
{
"name": "ES_video"
}
]
},
{
"url_tags": "video1__PT.mp4",
"video_id": "520006849189418",
"thumbnail_url": "<<thumbnail_url>>",
"adlabels": [
{
"name": "PT_video"
}
]
}
],
"images": [],
"asset_customization_rules": [
{
"customization_spec": {
"geo_locations": {
"countries": [
"ES",
"MX"
]
}
},
"title_label": {
"name": "english"
},
"body_label": {
"name": "english"
},
"video_label": {
"name": "ES_video"
},
"image_label": {
"name": "ES_image"
},
"priority": 1
},
{
"customization_spec": {
"geo_locations": {
"countries": [
"BR"
]
}
},
"title_label": {
"name": "english"
},
"body_label": {
"name": "english"
},
"video_label": {
"name": "PT_video"
},
"image_label": {
"name": "PT_image"
},
"priority": 2
},
{
"customization_spec": {},
"title_label": {
"name": "english"
},
"body_label": {
"name": "english"
},
"video_label": {
"name": "video"
},
"image_label": {
"name": "image"
},
"priority": 3
}
],
"ad_formats": [
"SINGLE_VIDEO"
],
"titles": [
{
"text": "Match & Blast to victory!",
"adlabels": [
{
"name": "english"
}
]
}
],
"bodies": [
{
"text": "web optimization - subtitle1",
"adlabels": [
{
"name": "english"
}
]
}
],
"descriptions": [
{
"text": "Play Best Fiends with your Best Friends! Join a team and unlock rewards today!",
"adlabels": [
{
"name": "english"
}
]
}
],
"link_urls": [
{
"website_url": "https://example.com/",
"adlabels": [
{
"name": "english"
}
]
}
],
"call_to_action_types": [
"LEARN_MORE"
]
}
}
广告素材已成功创建。当我尝试在创建广告请求中使用带有 creative_id 的广告素材时,出现以下错误。
{
message: "Invalid parameter",
type: "OAuthException",
code: 100,
error_subcode: 1885952,
is_transient: false,
error_user_title: "Customized Audience Too Narrow For Asset Customization Ads",
error_user_msg: "The customized audience of rule #2 in your Asset Customization Ads is too narrow. Please revisit the defined Asset Customization rules and reduce the overlap between them.",
fbtrace_id: <<trace_id>>,
}