Rotating developer token with standard access

2025-03-12 Thread rahul...@decision-tree.com
Hi Guys, We have a google ads developer app and token that we have been using to fetch GoogleAds data. Now, based on our new policy we need to rotate all google credentials every 6 month and that includes the GoogleAds developer token too. However, when we tried to use the new developer token i

Re: landing page view api data not matching with googleads ui

2023-12-11 Thread rahul...@decision-tree.com
Guys, Any updates on this? Waiting for any resolution possible. Thanks On Wednesday, November 8, 2023 at 10:50:06 PM UTC+5:30 Google Ads API Forum Advisor wrote: > Hello - > > Unfortunately there isn't a resolution here yet. The team is still > investigating, and I'll follow up here with mor

Landing page view API data not matching with GoogleAds UI

2023-11-01 Thread rahul...@decision-tree.com
Hello, We are trying to get landing page view data using google ads API but the data is not matching with the UI. E.g for the date 2023-10-24, this is what we get from API: *click: 405* *impressions: 50644* *cost: $1372.31* And in the API, data for the same day shows: *click: 488* *impressions:

Re: User list update via Rest api remain empty with high match rate!

2022-05-02 Thread rahul...@decision-tree.com
Hi Guys, I am having the exactly same issue. The same data gets uploaded successfully using interface. Thanks Rahul On Tuesday, April 12, 2022 at 12:51:49 AM UTC+5:30 adsapi wrote: > Hello Diana, > > I sent you an email on April 5th directly to your email address. It > contains information ab

Customer Match: Different behaviour between google ads interface, python sdk and rest api

2022-05-02 Thread rahul...@decision-tree.com
Hi all, I have been trying to write a script for customer match but getting different behaviours in google ads interface, python sdk and rest API. I am using the same data ( 1 rows of csv file with email id, first name, last name, country code etc.). >From the interface, it successfully loa

Re: Developer token prohibited

2021-08-16 Thread rahul...@decision-tree.com
Hi, We are facing a similar problem with GoogleAds api. We are using the same project and developer token for both GoogleAdwords and GoogleAds API. For GoogleAdwords, it is working perfectly but with GoogleAds, it throws the DEVELOPER_TOKEN_PROHIBITED error saying that "message: "Developer toke

Re: How to convert Google-Ads API GoogleAdsRow to json?

2021-05-18 Thread rahul...@decision-tree.com
I have found a working solution. This will go something like this: ``` import proto response = ga_service.search_stream(search_request) for batch in response: for row in batch.results: logging.debug(proto.Message.to_dict(row)) ``` On Tuesday, September 8, 2020 at 6:33:16 PM