dseomy1964 2018-07-13 08:25
浏览 68

facebook-php-sdk:我无法更新广告集的信息

$adset->update();

It's only to update the status of the Adset, Changing of the others param, It's failing!

what's the reason? Who can help me solve?

Grateful!

  • 写回答

1条回答 默认 最新

  • dousheyan0375 2018-07-13 08:45
    关注
    $result = $adset->update(
            array(
                \FacebookAds\Object\Fields\AdSetFields::DAILY_BUDGET => 1100,
                \FacebookAds\Object\Fields\AdSetFields::TARGETING=>(new \FacebookAds\Object\Targeting())->setData(array(
                    \FacebookAds\Object\Fields\TargetingFields::INTERESTS=>array(
                        'id'=> 6009003307783,
                        'name'=>'Accounting and finance',
                    )
                ))
            )
        );
    
    评论

报告相同问题?