0

我们昨天为我们的应用程序启用了 2013 年 10 月 2 日的重大更改,对应用程序设置的更改已经确认。如果我bid_info以新格式提交(使用字符串而不是数字索引)它可以工作:

"bid_info": {
  "CLICKS": 75
}

当我稍后尝试通过对其 url 的请求来读取广告组时,我同时得到一个bid_info和一个max_bid设置(我预计max_bid它将在 10 月 2 日模式下删除),但bid_info包含数字索引而不是预期的 CLICKS-细绳:

(...)
"adgroup_status": 3,
"bid_type": 1,
"max_bid": 75,
"bid_info": {
   "1": 75
},
"ad_status": 3,
"locations": [
  3
],
(...)

对此有什么建议吗?这是错误还是设计使然?还是在为我们的应用程序激活 10 月 2 日更改时出现问题?

再见

托拜厄斯

4

2 回答 2

0

https://developers.facebook.com/bugs/539767489417940?browse=external_tasks_search_results_5203fffd63da04c48847913

I actually filed a ticket against this. The Facebook bug response said it would be fixed on July 17th, however a contact at Facebook elevated this ticket after it was not fixed on July 17th, and it is now being currently worked on.

We were told it should be functional by the end of August.

于 2013-08-08T20:33:03.553 回答
0

对我来说也是如此,但没有激活 10 月 2 日的重大更改......将数字作为名称字段很奇怪,并且在 c# 等语言中是不允许的。

应该是这样的信息:您在出价中放置的值的字典

CPM={'REACH':cent_value}
CPC={'CLICKS':cent_value}
oCPM or CPA={'ACTIONS':cent_value}

我用 1、38、44、55 代替了这个。

更新,实际上是这样的:操作:55 到达:44 点击:1 社交印象:38

更多信息:https ://developers.facebook.com/docs/reference/ads-api/optimizedcpm/

于 2013-07-23T07:31:11.220 回答