Re: AD_PERFORMANCE_REPORT coming back empty for certain accounts

2012-01-27 Thread pete
I think I'm getting the same problem. Using an AdPerformance Report I cannot return rows relating to 3rd Party Ads (ENUM: THIRD_PARTY_REDIRECT_AD) in a paused adgroup of an active campaign. I can see the metrics via AdWords, I can retrieve them using auto placement report, but no matter what

Re: API Reports Not Returning Historical Data for Currently Paused Campaigns/AdGroups in v201109

2012-01-27 Thread pete
Hi Chris - do you specify the AdGroup Status, Campaign Status and Ad Status in the selector predicate? I got some joy when I explicitly set all possible variants. pete -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group:

Re: Google.Api.Ads.AdWords.Util.ReportsException: Report contents are invalid. using API v201101

2012-01-27 Thread Marius Toma
Thank you Anash, I solved the problem by installing the new version of my software using Google Adword API v201109. Cheers, Marius Toma -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com

Re: how to get Search volume and Competition value of keyword

2012-01-27 Thread Hasitha Eranga
Hi sorry my mistake. i didn't see u r post and thank u so mach for u r help I want it from php Regards, hasitha -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api

Re: explain how to get Get Search volume and Competition value of keyword

2012-01-27 Thread Hasitha Eranga
Hi, thanks for u r help sorry for my second post Regards, Hasitha -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You

Re: Error handling in Perl

2012-01-27 Thread Ovid
Hi Etienne, I've actually wrapped the *SOAP::WSDL::Client::call call in my Moose classes to trap various errors with Try::Tiny. I've had to set die_on_faults to true because I don't want to accidentally forget to trap an error. I fall back to regex tests. My actual code winds up looking like

I have not getting the competition value?

2012-01-27 Thread Pawan Sharma
Hello Friends, I have not getting the competition value. if any use this api and version of 201109 than please help me step by step. i have below information:- Keyword with text 'mars cruise e903fb0c', match type 'BROAD', global monthly searches '301000', *competition '0' * average monthly

Re: PHP API v201109 - Set scheduling for campaign

2012-01-27 Thread Kevin Winter
Hi Alistair, Unfortunately, we don't have an example in the client libraries to cover this use case. We do have an article with Java code snippets - the PHP version should be pretty similar: http://code.google.com/apis/adwords/docs/guides/ad_scheduling.html - Kevin Winter AdWords API Team

Re: Get reports by day and month

2012-01-27 Thread Kevin Winter
Hi, We have an example in the Java Client Library that demonstrates how to download reports: http://code.google.com/p/google-api-adwords-java/source/browse/trunk/examples/v201109/DownloadAdHocReport.java That example specifically uses the Keyword Performance Report, but we have documentation

Re: Keyword Performance Report: Get data for all clients and campaigns

2012-01-27 Thread Kevin Winter
Hi Keith, v201108 is sunsetting permanently on February 29th. We recommend you develop with v201109 instead. Unfortunately, it is not currently possible to download reports for ALL clients at once with the AdWords API. We've published a blog post discussing how to accomplish this use case

Re: ServicedAccountService - failed to get account information for some accounts (getting an empty account)

2012-01-27 Thread Kevin Winter
Hi Roee, Since you have the clientCustomerId, you should be able to get this information using AdHoc reports. If the account has impressions, you can use an Account Performance Report to obtain the CurrencyCode and Account Descriptive Name:

Using AdGroupAdOperation 'SET' instead of Add

2012-01-27 Thread Peter Crowley
I got my token (after 4 months! - I think Anash helped get me across the line, thx). My app is published to the live system after a few tweaks - Hurray! I have a question about whether you can use SET in AdGroupAdOperation rather then ADD when updating the content of a textAd? I made the changes

Re: PHP API v201109 - Set scheduling for campaign

2012-01-27 Thread Evgeniy Bogdanov
I've created code for you (it assumes that file located in lib/ examples/v201109/ directory: ?php error_reporting(E_STRICT | E_ALL); // You can set the include path to src directory or reference // AdWordsUser.php directly via require_once. // $path = '/path/to/aw_api_php_lib/src'; $path =

Re: InfoService usage for reporting quota usage on v13, v20xx

2012-01-27 Thread cefc
Kevin, Thanks for the clarification. Much appreciated! On Jan 26, 7:52 am, Kevin Winter kevin.win...@google.com wrote: Hi,   The InfoService returns information about units spent overall - not tied to the version used.  For example, you can use v201109 InfoService and see all units spent

Re: Using AdGroupAdOperation 'SET' instead of Add

2012-01-27 Thread Evgeniy Bogdanov
Hi Peter. Glad to hear that your application is live now :) Please, read carefully specification - http://code.google.com/intl/en/apis/adwords/docs/reference/latest/AdGroupAdService.html#mutate I'll quote here for you: Set - Updates an ad group ad. Except for status, ad group ad fields are not

Re: Using AdGroupAdOperation 'SET' instead of Add

2012-01-27 Thread Evgeniy Bogdanov
Seems that my message is lost if not - sorry for double :) Hi Peter. Glad to hear that your project is live now. :) About your question. Please, read carefully this http://code.google.com/intl/en/apis/adwords/docs/reference/latest/AdGroupAdService.html#mutate I'll quote here for you: Set -

Re: AccountService is only available on a whitelist basis

2012-01-27 Thread Rob
Thanks Eric - having the time zones in a known standard would be much easier. The time zone Europe/Berlin would be the same string value in summer or winter, so taking it from the current state of the account wouldn't be a problem. It's bad enough that I have to pull reports to get the time

Re: Using AdGroupAdOperation 'SET' instead of Add

2012-01-27 Thread Peter Crowley
Thanks for the quick response. I had not seen that page. All is working again - my 'messing' arose, because I was not REMOVEing the old ad before ADDing the new one. I am actually already using GetBulkMutateJobService. Someone not to far from you (in Russian terms!) helped me out using the

Re: AuthToken (v201109): VB.NET example to get?

2012-01-27 Thread bgraves
Thanks Anash! I couldn't find a VB.NET example but C# works for me! :) On Jan 26, 7:41 pm, Anash P. Oommen anash.p.oommen +fo...@google.com wrote: Hi, There's the AuthToken class. You could use it like: new AuthToken(config, adwords, email, password).GetToken(); For config, you could

Re: Using AdGroupAdOperation 'SET' instead of Add

2012-01-27 Thread Evgeniy Bogdanov
Yes, Alex is really good. BulkMutateJobService is marked to deprecation, you need to move your code for use new service MutataJobService. Regards, Evgeniy. On 27 янв, 21:22, Peter Crowley pcrow...@gmail.com wrote: Thanks for the quick response. I had not seen that page. All is working again

XML Schema for downloaded reports?

2012-01-27 Thread Crosby Grant
Please pardon the noobish question here? I'm looking for a way to get the XSD of the 201109 AdHoc reports. The actual reports that we can download. I'm not looking for the XML for the report definitions that we send to request the report. I'm looking for the Schema of the report that gets

Re: XML Schema for downloaded reports?

2012-01-27 Thread Crosby Grant
sorry, to clarify: When I download a report using XML in v201109 adhoc reporting, is there a way to get an XSD document for that too? using the .net library. thx. On Jan 27, 7:35 pm, Crosby Grant cros...@gmail.com wrote: Please pardon the noobish question here? I'm looking for a way to get the