有没有人知道什么在这里不起作用,如果你注意到我看到的异常?我想为 FB 宣布的 10 月更改做准备,似乎在创建广告组时需要使用 CPC/CPM 作为出价类型,需要以不同方式定义最高出价等。
这是我的电话:
curl -F "campaign_id=XXXXXXXX" -F "bid_type=CPC" -F "bid_info={'clicks':111}" -F "name=test" -F "adgroup_status=1" -F "targeting={'countries':['US']}" -F "creative={'title':'test','body':'test','image_hash':'cf689a9aed4769fc4c8192569fda9f5e','link_url':'http://mylink.com/','type':1}" -F "redownload=1" -F "https://graph.facebook.com/act_XXXXXXXX/adgroups?access_token=TOKEN"`
这是来自 FB API 的回复:
[error] => stdClass Object
(
[type] => Exception
[message] => Please specify the locations on Facebook where you want to show ad impressions.
[code] => 1487027
)
当我使用 1 作为bid_type 时,不会发生这种情况。
你怎么看?