Posts under category google-ads-api

I'm trying to use the Google Ads API to create and update audiences but I'm unsure which credential I should use.

My scripts starts like this:

require 'xxxxx/vendor/autoload.php'; use Google\Ads\GoogleAds\Lib\V14\GoogleAdsClientBuilder; use Google\Ads\GoogleAds\V14\Resources\OfflineUserDataJob; use Google\Ads\GoogleAds\V14\Services\OfflineUserDataJobOperation; use Google\Ads\GoogleAds\V14\Services\AddOfflineUserDataJobOperationsResponse; use Google\Ads\GoogleAds\V14\Enums\OfflineUserDataJobTypeEnum\OfflineUserDataJobType; use Google\Ads\GoogleAds\V14\Services\UserIdentifier; use Google\Ads\GoogleAds\V14\Services\TransactionAttribute; use Google\Ads\GoogleAds\Util\V14\ResourceNames; $developerToken = 'wwwwwww'; $clientCustomerId = 'wwwwwww'; $loginCustomerId = 'wwwwwww'; 

I get the developer token from my Google Ads API so I guess, this one is the easiest to find.

I have a Google Ads account that has a XXX-XXX-XXXX format and I used it for $clientCustomerId.

=> is this correct?

I also have another ID XXX-XXX-XXXX displayed on the top left corner of my screen, I suppose it is the MCC number and I used it for $loginCustomerId. I'm not sure I have to use this one if I have the client ID.

=> Should I use the MCC id or something else?

I also have credentials for the API in my cloud console but I don't know if I have to use them here.

Thanks Laurent

I have implemented the GA4F SDK in our Android app to fetch Google ads app campaign Deferred Deeplink , and Google Ads support has confirmed that our setup, including the deep links, looks good. However, the functionality still isn’t working.

Issue - deeplink is not recieving in GA4F sdk or Install referrer callbacks.

Deeplinks pass validations in Google Playstore and Google ads deeplink validator

Still having issue

Sdk implementation Reference link -> https://support.google.com/google-ads/answer/12373942?hl=en#zippy=%2Csteps-to-activate-ddl-in-the-gaf-sdk

Is there any configurations missing between Google ads and GA4F ?

I’m encountering an issue with app-ads.txt verification in Google AdMob. I selected 'Verify App' in 'App Verification'. Despite following all the steps and confirming that the file is properly set up, I keep getting the error: "We couldn't verify", along with the following message from Google AdMob:

"Your details don't match the information in your AdMob account."

Here’s what I’ve done so far:

app-ads.txt File Accessibility:

The app-ads.txt file is hosted at:

Visiting either of these links returns the app-ads.txt content successfully. I validated the file’s format using adstxt.guru, and it states that the file is formatted correctly.

Developer Website and App Store Integration: The app is published on the Apple App Store, and clicking the 'App Support' link from the app listing successfully navigates to the company website: https://www.theiafintech.com/

Guide Reviewed: I’ve carefully reviewed the AdMob instructions here. Everything appears to match the requirements, as the file is publicly accessible on both HTTP and HTTPS formats.

Issue: Despite the above, Google AdMob is unable to verify the app-ads.txt file, and I continually get the error message "We couldn't verify."

Request: Could someone help identify what might be going wrong? Are there additional steps or requirements (beyond those outlined in the guide) that I might be missing? I’d really appreciate any insights or suggestions.

Thank you for your help!

FYI: Here’s what I get after selecting 'Verify App':

I'm facing a problem with custom events sent to Google Analytics. The main problem is that custom sent events are being assigned only to user acquisition and not to traffic acquisition.

I'm sending 2 custom events.

1st event starts the session:

{     "client_id": "435384.2118427612",     "events": [         {             "name": "session_start_test",             "params": {                 "session_id": 1733217977,                 "source": "Test source",                 "medium": "cpc",                 "session_number": 1             },             "timestamp_micros": 1733217976999990         }     ] } 

2nd event send source data:

{     "client_id": "435384.2118427612",     "events": [         {             "name": "custom_event_test",             "params": {                 "session_id": 1733217977,                 "engagement_time_msec": 100,                 "title": "Test title",                 "country": "Estonia",                 "source": "Test source",                 "medium": "cpc",                 "campaign": "test",                 "campaign_source": "Test source",                 "campaign_medium": "cpc",                 "session_number": 2             },             "timestamp_micros": 1733217977000000         }     ],     "user_properties": {         "country": {             "value": "Estonia"         }     } } 

Both events are sent to GA and can be seen inside realtime reporting.

The problem that both of these events still assign source/medium to user acquisition instead of traffic acquisition. I've also tried to send utm_source and utm_medium, but that did not work out. Any ideas where is the problem?

I'm sending both events with PHP curl, using Google Measurement Protocol API.