Since we updated the Google Ads API from version 3 to 6 we get the error message "Fail to push the limit".
This happens if we try to link the Manager Account to the client.
return (new GoogleAdsClientBuilder())
->fromFile()
->withOAuth2Credential($oAuth2Credential)
->withLoginCustomerId($loginCustomerId)
->build();
Is there any way to increase the limit?
I had the same issue while working with firebase in PHP. I found that this error happens if the auto generated protobuf metadata files are modified. The files used to be tampered by FileZilla which I was using for uploading files to the server. This is what I did to get rid of it:
I had the same error and even I recently upgraded and used composer to switch to newer version of Google Ads and forgot to remove the include statement that was used for earlier version, once removed, the error was gone. Remove the require/include statement from your code, hope that helps.
require __DIR__ . '/../google-ads-php/vendor/autoload.php';
OR
Your autogenerated protobuf files are being altered. read more here: https://github.com/googleads/google-ads-php/issues/566
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With