Getting an error exception in the Ads beta PHP library: User Deprecated: 
Google\Cloud\Logging\V2\LogSink_VersionFormat is deprecated and will be 
removed in the next major release. Use 
Google\Cloud\Logging\V2\LogSink\VersionFormat instead

Here's the example code: 

public static function runExample(GoogleAdsClient $googleAdsClient, 
$customerId)
   {
       $googleAdsServiceClient = $googleAdsClient->getGoogleAdsServiceClient
();
       // Creates a query that retrieves all campaigns.
       $query = 'SELECT campaign.id, campaign.name FROM campaign ORDER BY 
campaign.id';
       // Issues a search request by specifying page size.
       $response =
           $googleAdsServiceClient->search($customerId, $query, ['pageSize' 
=> self::PAGE_SIZE]);
       // Iterates over all rows in all pages and prints the requested 
field values for
       // the campaign in each row.
       foreach ($response->iterateAllElements() as $googleAdsRow) {
           /** @var GoogleAdsRow $googleAdsRow */
           printf(
               "Campaign with ID %d and name '%s' was found.%s",
               $googleAdsRow->getCampaign()->getId()->getValue(),
               $googleAdsRow->getCampaign()->getName()->getValue(),
               PHP_EOL
           );
       }

Seems like I avoid the error if my $customerId is set to my main MCC 
account whereas if I use any other customerIds (e.g. accounts nested inside 
the MCC), it'll throw.




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9a1d0ab9-7888-4795-ac06-eefa2ac9c798%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to