我使用的是营销 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);