I'm making a script buildt with code from the google ads api. In this script I'm trying to make a new account, and for that to happen, i need to select which manager account the script should be under. That is done with this code:

parser = argparse.ArgumentParser(description=('Creates a new client under the given manager.')) # The following argument(s) should be provided to run the example. parser.add_argument('-m', '--manager_customer_id', type=str,                     required=True, help='A Google Ads customer ID for the '                     'manager account under which the new customer will '                     'be created.') args = parser.parse_args() 

So when i run the script, i type in python new_acc.py xxx-xxx-xxxx and hit enter, and then i get the following error:

usage: new_acc.py [-h] -m MANAGER_CUSTOMER_ID new_acc.py: error: the following arguments are required: -m/--manager_customer_id 

I have also tried to add the manager_customer_id in the .yaml file.

I want to use the Google Ads API to access Google Ads reports. As a preliminary step, we want to use the GoogleCustomerServiceClient to retrieve customer information.

$MMC_ID = <My MMC 10 digits number>; $credentialsIniPath = app_path('resources/credentials/google/google_ads_php.ini'); $oAuth2Credential = (new OAuth2TokenBuilder())     ->fromFile($credentialsIniPath)     ->build(); $googleAdsClient = (new GoogleAdsClientBuilder())     ->fromFile($credentialsIniPath)     ->withOAuth2Credential($oAuth2Credential)     ->build(); $customerServiceClient = $googleAdsClient->getCustomerServiceClient(); try {     $customer = $customerServiceClient->getCustomer(ResourceNames::forCustomer($MMC_ID)); } catch(GoogleAdsException $e) {     $this->error($e->getMessage()); } 

But it returns an error

Fault ------- Status code: 7 Details: The caller does not have permission Failure: {"errors":[{"errorCode":{"authorizationError":"DEVELOPER_TOKEN_NOT_APPROVED"},"message":"The developer token is not approved. Non-approved developer tokens can only be used with test accounts."}]} 

The account Oauth2 login that created MMC, MMC is a test account. In google_ads_php.ini, clientId, clientSecret, refreshToken, and developerToken are already filled in. The refreshToken has just been generated.

What should I check for in this one?

Thanks.

If you go to my website https://iclintz.com/ and go to inspect and click on the mobile phone simulator and scroll down a little bit first, a google ad appears at the top, when you scroll back up to the very top, there is some padding that has been added and clicking on minimise on the google ad keeps the padding there. This issue is happening on all phones. I could not figure out why this is happening and there are no errors regarding this in the console log.

Screenshot here:

Any ideas for the cause of the issue or potential fixes? I've seen other sites that use google auto ads, but they do not suffer from the same problem.

I'm working at an agency and I would like to get the Spend data for all of our accounts to be imported into BigQuery to make a budget overview dashboard.

I've set up a Data Transfer and I managed to join some tables in the SQL editor from doing some research and learning SQL along the way. The data I get seems to be good.

However, I can't seem to find "Account Name" anywhere in the tables/views, I only find "ExternalCustomerId" which matches the AccountId, but the Account Name would of course be much better.

I've found that in the "Account Performance Report" or "Campaign Criteria", the name should be available, but I don't have these reports in my Data Transfer, I get different tables (see screenshots).

https://developers.google.com/adwords/api/docs/appendix/reports/account-performance-report

https://developers.google.com/adwords/api/docs/appendix/reports/campaign-criteria-report

screenshot: available campaign reports

Can anyone point me in the right direction?

Thanks a lot!

It was my first time to do app download campaign via google ads. I created a Universal app campaign and has no idea how to add in my tracking parameter on my campaign level. I have tried to append the tracking parameters with final url suffix, however, I've been informed there was no eligible ads found while all my 3 ads are approved.

- The app store link is : https://play.google.com/store/apps/details?id=com.yuurewards.app

- The part I tried to append via final url suffix but failed: referrer=utm_source%3DSCMP%26utm_medium%3DEM%26utm_content%3DPerformance_EM_IG_v2_app_store%26utm_campaign%3Dapps-launch%26anid%3Dadmob

- What I expect to have for the final url: https://play.google.com/store/apps/details?id=com.yuurewards.app&referrer=utm_source%3DSCMP%26utm_medium%3DEM%26utm_content%3DPerformance_EM_IG_v2_app_store%26utm_campaign%3Dapps-launch%26anid%3Dadmob

Would you please let me know how to append the utm parameters for my app download campaign so that my client can differentiate the downloads are coming from my campaign?