0

我使用的是营销 API 2.6 版。在 2.5 版本中,我们可以使用字段定位来检索广告集中的广告。但在 2.6 中,不支持字段定位。我想检索 age_min、age_max、geo_locations 和 page_types。如何检索广告集中的定位字段?这是我用来获取字段的代码

if(is_null(ACCESS_TOKEN) || is_null(APP_ID) || is_null(APP_SECRET)) {
      throw new \Exception(
        'You must set your access token, app id and app secret before executing'
      );
    }
    if (is_null(ACCOUNT_ID)) {
      throw new \Exception(
        'You must set your account id before executing');
    }
    Api::init(APP_ID, APP_SECRET, ACCESS_TOKEN);
    $adSet      = new AdSet($adSetId);
    $fields     = array('name', 'targeting', 'creative', 'conversion_specs', 'redownload', 'genders', 'tracking_specs');
    $result     = $adSet->getAds($fields, $limit);
4

1 回答 1

0

也许 $result = $adSet->read($fields); 应该管用?

我认为“getAds”可以为您提供广告集下的广告。看起来您对广告集的字段感兴趣,而不是广告集下的广告。

于 2017-05-17T21:55:22.583 回答