I follow all step of connectivity to Google Ads API. Using it I get account info like account number and time zone etc. But when I call API for campaign id or ads group at that time it return below output. In ads account (ui) I can see many campaigns.

output :

SearchPager<field_mask { paths: "campaign.id" paths: "ad_group.id"paths: "ad_group.name"}>

additionally : above output is getting in result variable and after that the for loop is not executing in image ofimage of code code

I have use to AFS based on the documentation, and I have also reference many other websites. I have found that the clicktrackUrl parameter is used in their code, which can trigger click tracking when clicking on an advertisement. However, I did not see this field in the documentation. The reference documentation is as follows:

https://support.google.com/adsense/answer/9055049

Does this field exist? I added this parameter, but it doesn't work on my website. How can I make this parameter work?

Reference website, website url: https://www.jnee.uk/us/strategize-g-suite-project-management-system-work enter image description here

I want use clicktrackUrl parameter to fixed my tracking problom,thank you

I am working with Google Ads and taking look in the documentation to see how to code a campaign.

from google.ads.google_ads.client import GoogleAdsClient def create_campaign(google_ads_client, campaign_name, budget_micros):     campaign_operation = google_ads_client.service.campaign.create(         customer_id="YOUR_CUSTOMER_ID",         campaign={             "name": campaign_name,             "advertising_channel_type": "SEARCH",             "status": "PAUSED",             "manual_cpc": {                 "enhanced_cpc_enabled": True             },             "campaign_budget": {                 "amount_micros": budget_micros             },             "network_settings": {                 "target_google_search": True,                 "target_search_network": True,                 "target_content_network": False,                 "target_partner_search_network": False             }         }     )     # Execute the campaign operation     response = campaign_operation.execute()     # Print the created campaign's resource name     print("Created campaign with resource name: " + response.resource_name) # Set up the Google Ads API client google_ads_client = GoogleAdsClient.load_from_storage() # Define the campaign details campaign_name = "My Campaign" budget_micros = 5.000000   

The error raised with macro budget and I don't know what is this, I tried set the number based on what documentation suggesting and still don't understand it

First of all, thanks for any help I can get here. I am not a professional and now, unfortunately, after many hours I just can't get any further.

I run a Woocommerce webshop and have integrated GA4 and Google Adwords Conversion + Remarketing via Tag Manager. In preview mode all tags and data layers are loaded correctly. But the Goolge Ads Remarketing Tag and the Conversion Tag are marked red and loaded but not sent.

The Error Message in Tag Manager Browser Plugin: HTTP response code indicates tag failed to fire: Status 400:

Google Tag Assistant - Conversion failed to fire

The Code in GTM Preview Mode when Remarketing Tag is fired ( everythings looks good ):

GTM - Preview - Remarketing Values

If i open Dev Tool on my Browser i see that some google Scripts are red ( Url = googleads.g.doublecklick...... ):

Google ads url is blocked

Unfortunately no conversions are recorded in Adwords and the imported conversions from GA4 are also counted only to a small amount. With the old Analytics UA I had no problems and almost all the conversions were displayed in Adwords.

GTM is published and i have no Ad Blockers running.

Conversion ID and Label is checked

The Google Ads Campaigns are running

I turned off the GTM plugin for wordpress and tried a paid plugin for google ads conversion tracking. Unfortunately i have had the same error.

In addition, I turned of almost all plugins and tested whether anything blocks. Unfortunately without result.

If I change the conversion ID in the remarketing tag and add "AW-", the tag is no longer displayed as red. However, I can not change the conversion tag because only numbers are allowed:

Trying Conversion ID with "AW-" in Remarketing Tag

I'm realy a bit desperate and really grateful for any ideas!

I am struggling with implement google native ads on web, i tired to find some documentation on google site, but all refers to mobile app. Has anyone perhaps implemented this?

Already what i do:

  1. I dig through the google documentation
  2. Ask chat GPT :) , give me few useless info
  3. Some tests with google ads events etc.