Re: INVALID_USER_INTEREST error for Affinity Audience and In Market Audience Options Returned from ConstantDataService.getUserInterestCriterion

2019-09-12 Thread 'David Wihl' via AdWords API and Google Ads API Forum
The new Google Ads API has addressed this issue. The UserInterestService implements an ad

RE: Google Ads API Client Library for Python v3.0 - when?

2020-03-07 Thread 'David Wihl' via AdWords API and Google Ads API Forum
The Python client lib for Google Ads API was posted on Friday. See https://pypi.org/project/google-ads/ -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this

Re: Google Ads API, Python Library - how to implement Exponential Backoff?

2020-03-12 Thread 'David Wihl' via AdWords API and Google Ads API Forum
The current Python library already implements much of this for you, except for the new GoogleAdsService:SearchStream . There is an example in .NET

Re: How to use google ads api python to update keyword text value?

2020-03-16 Thread 'David Wihl' via AdWords API and Google Ads API Forum
What type of ad are you trying to mutate? The list of ad types can be found at: https://developers.google.com/google-ads/api/docs/ads/ad-types The third column, Mutable, tells you whether you can mutate that specific ad type. For example a TextAd is not mutable but a ExpandedTextAd is. -David

How can I create a Text Assets from Google Ad API ?

2020-03-23 Thread 'David Wihl' via AdWords API and Google Ads API Forum
Have you looked at the code examples: https://github.com/googleads/google-ads-python/tree/master/examples ? There are a number of relevant examples such as adding an expanded text ad or an app ad campaign that you can adapt to your needs. -David -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: what does the param '-c' mean? How can i get it?

2020-04-21 Thread 'David Wihl' via AdWords API and Google Ads API Forum
> 2. ‘_c’ is the read command from the background bash request. You don’t need to worry. Just to clarify, '-c' allows the user to specify a customer_id on the command line, ie. $ python examples/basic_operations/get_campaigns.py -c 1234567890 On Monday, April 20, 2020 at 12:27:25 PM UTC-4,

Re: Google Ads Developer Docs - Site Crash

2020-05-05 Thread 'David Wihl' via AdWords API and Google Ads API Forum
If you have an adblock software, try disabling it and see if you get the same behavior. Regards, -David On Monday, May 4, 2020 at 6:25:54 PM UTC-4, Jeff Feng wrote: > > Hi all, > > I'm working on some Ads API development and noticed that the developer > docs site has been crashing - > https:/

Re: [Google Ads API] Page size behavior unpredictable in the new Ads API, making use of Ads API a gamble for different accounts and different times

2020-06-15 Thread 'David Wihl' via AdWords API and Google Ads API Forum
Yes, this has been addressed as of V3. You can use the GoogleAdsService:searchStream method. See the tutorial or one