Re: How to download global search volume using API v201209

2012-11-22 Thread Danial Klimkin
Hello Kunal, Please see the TargetingIdeaService: https://developers.google.com/adwords/api/docs/reference/latest/TargetingIdeaService SEARCH_VOLUME and TARGETED_MONTHLY_SEARCHES requestedAttributeTypes. -Danial, AdWords API Team. On Friday, November 16, 2012 2:11:14 PM UTC+4, Kunal

Re: Info adwords key words tool

2012-11-22 Thread Danial Klimkin
Hello fox, This is a good page to start with: https://developers.google.com/adwords/api/docs/ -Danial, AdWords API Team. On Monday, November 19, 2012 1:50:22 PM UTC+4, fox wrote: Hi, I developing an application for Windows OS and I need to integrate the search tool's keyword adword

Re: How do I change the Name of a Managed Customer

2012-11-22 Thread Danial Klimkin
Hello Stuart, No, ManagedCustomerOperationhttps://developers.google.com/adwords/api/docs/reference/latest/ManagedCustomerService.ManagedCustomerOperation.htmlonly supports ADD operator. -Danial, AdWords API Team. On Monday, November 19, 2012 6:53:52 PM UTC+4, Stuart wrote: I have been

Re: Social Ad Extensions

2012-11-22 Thread Danial Klimkin
Hello Herb, Social extensions are not yet supported in the API unfortunately. -Danial, AdWords API Team. On Monday, November 19, 2012 9:08:36 PM UTC+4, Herb Brittner wrote: I was looking into the add extensions in the API, and I don't see any way to see social extensions. Does this

Re: Create campaign to all countries and territories

2012-11-22 Thread Danial Klimkin
Hello joanfihu, In fact you don't need to do this step in order to target all countries and territories. Having no location targeted effectively means the campaign can serve everywhere. Answering your question, no, there is no way to do this faster. The production environment is much faster

Re: BiddableAdGroupCriterion disapprovalReasons

2012-11-22 Thread Danial Klimkin
Hello mm, All disapproved ads should have a reason. In case you see no reason for a particular ad, please send us full XML of request and server response over email (Reply action). -Danial, AdWords API Team. On Tuesday, November 20, 2012 8:18:03 PM UTC+4, mm wrote: Hey guys - I am

Re: reporting in Sandbox

2012-11-22 Thread Danial Klimkin
Hello assaf, This is expected for the sandbox. Please also refer to this post: http://googleadsdeveloper.blogspot.ru/2012/11/introducing-test-accounts.html -Danial, AdWords API Team. On Tuesday, November 20, 2012 11:26:21 PM UTC+4, assaf wrote: I'm trying to implement the reporting

Re: remove from statistics some conversion trackers

2012-11-22 Thread Dorian Kind
Hi, sounds to me like you want to filter by ConversionCategoryName or ConversionTypeName. Cheers, Dorian On Thursday, November 22, 2012 8:22:45 AM UTC+1, Xavier Bour wrote: Hello, I have two trackers : visits of homepage and purchases. When I create a report with the field Conversion, I

Re: Using a cached wsdl in the PHP client library.. is it possible?

2012-11-22 Thread Paul Matthews
Hi Ian, PHP's SoapClient has a built in mechanism for caching wsdls, configurable via the php.ini . The AdWords API library also exposes a configuration setting in the settings.ini file to determine where the wsdls will be cached. To ensure the library can honor the caching strategy, first

Re: [v201209] Discrepancy between API results and web UI search volume results

2012-11-22 Thread Adwords user
On Friday, November 9, 2012 12:48:39 AM UTC+8, Kevin Winter wrote: We recently published a blog post talking about these numbers: http://googleadsdeveloper.blogspot.com/2012/11/understanding-adwords-api.html Any update on the plan mentioned in that blog post? Now that v201109 is

Re: How do I change the Name of a Managed Customer

2012-11-22 Thread Stuart
Are there any plans to add a MUTATE operation soon or should I find another way to rename these accounts? On Thursday, November 22, 2012 9:15:43 AM UTC, Danial Klimkin wrote: Hello Stuart, No,

Re: TargetingIdeaService v201209: Notice Error: Array to string conversion in /Google/Google/Api/Ads/Common/Lib/AdsSoapClient.php, line 200

2012-11-22 Thread Evgeniy Bogdanov
Hi Fran, I've tried your code and it gives same result for me. I'm not sure about reasons - seems that problem is in SOAP serialization. Change to make your code working right: array_values(array_unique(array(*car*,smart tv,truck,Ipad,porshe,bmw,fiat,hotels,Iphone,*car* ,Tablet,omega3)));

Re: How to download global search volume using API v201209

2012-11-22 Thread Adwords user
Hi Danial, I saw your blog post here: http://googleadsdeveloper.blogspot.com/2012/11/understanding-adwords-api.html Unfortunately, my project's requirement is to retrieve the local search volume of keywords - just as how they used to be on API v201109 and below. In other words, the values

Re: OAuth 2.0 hangout and/or screencast please, for PHP Client Library developers

2012-11-22 Thread Paul Matthews
Hi Chirag, The simplest way to pass OAuth2 configuration to the AdWordsUser is to use an empty constructor and call the setter -SetOAuth2Info. For an example of this, pelase see the OAuth2

What is the proper way to sync Adwords API with my Application (special case)?

2012-11-22 Thread Oron Sharabi
Hello, My platform (based php) has some special needs beyond retrieving and sending data from the API. * * *For example:* We need to repeatedly check if an AdGroup reached a certain amount of impressions and update our database accordingly: if(impressions = 2) { perform some query... }

Re: What is the proper way to sync Adwords API with my Application (special case)?

2012-11-22 Thread Anash P. Oommen
Hi Oron, You could run an adgroup performance report every 10 minutes and check the stats for all the 3000 adgroups in a single go. However, AdWords API stats are not real-time, they are usually behind by 3-4 hours. You might want to take that into consideration with the solution you are