我有一个大约 260 个广告系列 ID 的列表,我想获取每个广告系列 ID 的所有广告集数据。
我正在使用以下内容来请求一个广告系列 ID,但如果我在循环中运行它并很快达到我的用户请求限制。
$campaign = new AdCampaign($campaign_id);
$adsets = $campaign->getAdSets($fields);
我正在关注https://developers.facebook.com/docs/marketing-api/guides/chapter-6-ads-management#sets,目前正在使用他们的建议:
use FacebookAds\Object\AdCampaign;
use FacebookAds\Object\Fields\AdSetFields;
$fields = array(
AdSetFields::NAME,
AdSetFields::START_TIME,
AdSetFields::END_TIME,
AdSetFields::DAILY_BUDGET,
AdSetFields::LIFETIME_BUDGET,
);
$campaign = new AdCampaign('<CAMPAIGN_GROUP_ID>');
$adsets = $campaign->getAdSets($fields);
提前致谢。