Re: Migration to Adwords api v201206: New vs Old java client library?

2012-09-21 Thread Kevin Winter
Hi Christian, Yes, we published a migration guide here: https://code.google.com/p/google-api-ads-java/wiki/MigrationGuide It doesn't cover everything in detail, but we do have examples for both Defined Reports: https://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/

Re: Migration to Adwords api v201206: New vs Old java client library?

2012-09-21 Thread cefc
Thanks Kevin. Would you happen to know if there is a migration guide for reporting and also any examples for V201206 Reporting using the old client library? Christian On Tuesday, September 18, 2012 9:02:04 AM UTC-7, Kevin Winter wrote: > > Hi, > I'm a bit biased as I maintain the new librar

Re: StartDate and EndDate for ad in AdStats?

2012-09-21 Thread Yulong Yang
Yeah this is waht I am thinking of, I didnt see startDate or endDate in the selector fields of adgroupadservice. But one confusion is, in the adStats API guidefor adgroupad service, it lists these 2 field

Re: StartDate and EndDate for ad in AdStats?

2012-09-21 Thread Oliver
According to the link Anash put earlier, I think Start and End dates are not possible selectors in AdGroupAdService. But I could have misunderstood the documentation. These fields are marked as inherited, so presumably you need to get them from the CampaignService instead? On Friday, Septemb

Re: Can you help me to find out how to reach client’s payments through API.

2012-09-21 Thread Rodrigo Saling
Thanks for the info Kevin! I just got asked by my boss about this and found your answer. ;-) On Friday, September 21, 2012 10:42:29 AM UTC-3, Kevin Winter wrote: > > Hi, > Unfortunately, it is not currently possible to obtain billing > information (sumary, charges, invoices, etc) via the API.

Re: StartDate and EndDate for ad in AdStats?

2012-09-21 Thread Yulong Yang
I actually tried both lower case and upper case 'StartDate' and 'EndDate', none of them work. This is my function to grab adstats, I use adGroupAdService: def getAdStats(self, ad_id): result = [] offset = 0 selector = { 'fields': ['Id', 'AdGroupId', 'Impressions', 'St

Re: StartDate and EndDate for ad in AdStats?

2012-09-21 Thread Oliver
I don't see StartDate and EndDate as selectors excpet for the CampaignService object. Which service object are you using? AdgroupAdService? Oliver On Friday, September 21, 2012 2:44:16 PM UTC+1, Yulong Yang wrote: > > Hey thanks for the reply. Sorry I didnt clarify myself. I also tried > 'Sta

Re: StartDate and EndDate for ad in AdStats?

2012-09-21 Thread Yulong Yang
Hey thanks for the reply. Sorry I didnt clarify myself. I also tried 'StartDate' and 'EndDate' in the ad group ad stats selector, it still not work. On Friday, September 21, 2012 4:44:25 AM UTC-4, Anash P. Oommen wrote: > > Hi, > > It should be StartDate and EndDate (first letter caps). See > h

Re: Can you help me to find out how to reach client’s payments through API.

2012-09-21 Thread Kevin Winter
Hi, Unfortunately, it is not currently possible to obtain billing information (sumary, charges, invoices, etc) via the API. - Kevin Winter AdWords API Team On Tuesday, September 18, 2012 4:50:01 AM UTC-4, pumba wrote: > > > Hello > Can you help me to find out how to reach client’s payments thr

Re: Adwords UI vs AD_PERFORMANCE_REPORT totals

2012-09-21 Thread Marijn
For anyone who is wondering what went wrong here: there is an error in de xml parsing code I posted here. XElement.ReadFrom() moves the position in the stream being read to the next element. Because we call XmlReader.Read() after each node, it skips every other row... Op maandag 10 september 2

Re: IMPORTANT: Upcoming extended downtime for the AdWords API.

2012-09-21 Thread Kevin Winter
Correction: this is happening tomorrow. On Monday, September 10, 2012 4:50:01 PM UTC-4, Kevin Winter wrote: > > You will not be able to use the AdWords API for 10 hours this coming > Saturday. See our blog post for details: > http://googleadsdeveloper.blogspot.com/2012/09/upcoming-extended-adw

Re: using adparam to set prices on all ads in an adgroup

2012-09-21 Thread Peter Crowley
Hi Justin I like you am publishing 1 product per ad & 1 ad per adgroup I have typically 15 keywords per item. I update them 400 at a time. The updates are cheap at 0.1 Marking them first in the database for update, then looping over a SQL query with a limit 400 on it & sending up 400 operations

Getting a "java.lang.VerifyError: Cannot inherit from final class" when running in Tomcat

2012-09-21 Thread Oliver
I'm hoping someone with better Java knowledge than ours can help us with this one. Our code works fine when running standalone. But when we run in Tomcat, this line: String clientLoginToken = new ClientLoginTokens.Builder().forApi(ClientLoginTokens.Api.ADWORDS).from(mapConfiguration).build().

Adword API V201109 : Error : Report contents are invalid. AuthorizationError.USER_PERMISSION_DENIED

2012-09-21 Thread Snehal Patel
Hi, I am getting following error while downloading Keyword Performance report. {"Report contents are invalid. - !!!2|||-1||| AuthorizationError.USER_PERMISSION_DENIED @ ; trigger:''; errorDetails:message=authenticated external userId=82151493 from customerId=80562453 accessing customerId=21905

Re: Change History Data

2012-09-21 Thread AdWordsAPIAdvisor
Hello Chirag, Yes, this is correct. -Danial, AdWords API Team. Original Message Follows: From: Chirag Subject: Re: Change History Data Date: Thu, 20 Sep 2012 02:30:41 -0700 (PDT) > Hello Danial, > > Yes,I am giving date range of one week from monday to sunday. > Wh

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-21 Thread Anash P. Oommen
Hi Nakul, As Kevin mentioned, yes, ClientLogin is deprecated, and there's a 3 year deprecation policy for Google Apps. Google Apps and Google AdWords are however two different products guided by different deprecation policies, so AdWords may decide to drop support for ClientLogin at an earlier

Re: StartDate and EndDate for ad in AdStats?

2012-09-21 Thread Anash P. Oommen
Hi, It should be StartDate and EndDate (first letter caps). See https://developers.google.com/adwords/api/docs/appendix/selectorfields for a more comprehensive list of supported selector fields. Cheers, Anash P. Oommen, AdWords API Advisor. On Friday, 21 September 2012 06:56:17 UTC+5:30, Yulon