我使用的是营销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);
答案 0 :(得分:0)
也许 $ result = $ adSet-> read($ fields); 应该工作吗?
我认为“getAds”会为您提供广告下的广告。 您似乎对adset的字段感兴趣,而不是adset下的广告。