I am using php code for fb marketing api and facing this deprecation issue
Deprecated: read is being deprecated, please try not to use this in new code.
use FacebookAds\Object\AdAccount;
use FacebookAds\Object\Fields\AdAccountFields;
$account = new AdAccount('act_<AD_ACCOUNT_ID>');
$account->read(array(
AdAccountFields::TOS_ACCEPTED,
));
// Dump TOS Accepted info.
var_dump($account->{AdAccountFields::TOS_ACCEPTED});
Have they updated their code somewhere else? what should I use instead of read
function? Thanks.