0

过去,当我从 API 请求广告时,它会返回一个名为“creative_ids”的字段,我可以使用它来获取广告与其广告素材之间的联系。

在 2.3 版中,此字段已被弃用。现在找到广告及其广告素材之间联系的最佳方式是什么?

4

1 回答 1

0

该字段现在称为:“creative”,其值是具有 id 字段的对象。

例如:/?fields=creative

{
"id": "< AD_GROUP_ID >",
  "creative": {
    "id": "<CREATIVE_ID>"
  }
}
于 2015-07-03T09:29:38.610 回答