Intermittent issues with WSDL

2012-09-17 Thread Brandon Parise
We are experiencing intermittent issues downloading reports resulting in this error being thrown: Error Message: SOAP-ERROR: Parsing WSDL: Couldn't load from ' https://adwords.google.com/api/adwords/cm/v201109/ReportDefinitionService?wsdl' : failed to load external entity " https://adwords.go

Re: Timezone reference table updated

2012-08-15 Thread Brandon Parise
gt; Brandon, are you saying you only just started getting inaccurate results > for timezone? Has it not always been like this? > > > On Tuesday, August 14, 2012 9:31:51 PM UTC+1, Brandon Parise wrote: >> >> The timezone is not being shifted based upon the observance of dayl

Re: Timezone reference table updated

2012-08-14 Thread Brandon Parise
The timezone is not being shifted based upon the observance of daylight savings time. I pulled a report for today: 103526900,2012-08-14,1.0,4,1,7.59,9,(GMT-05:00) Eastern Time The current offset should be GMT-04:00 B On Wednesday, February 29, 2012 6:05:16 PM UTC-5, Eric Koleda wrote: > > Hi

Report "account timezone" has incorrect offset

2012-08-13 Thread Brandon Parise
I pull a report @ 3:30PM EST and this is an example row: 98697020,2012-08-13,15,(GMT-05:00) Eastern Time The problem here is that currently Eastern Time is GMT-04:00 due to daylight savings. This is causing some confusion on our end because 3PM @ -05:00 offset is actually in the "future" Bran

Re: AdGroupAdService Really Slow to get get 10 ads

2012-08-08 Thread Brandon Parise
u over the email. > > Cheers, > Anash P. Oommen, > AdWords API Advisor. > > On Tuesday, 7 August 2012 23:44:21 UTC+5:30, Brandon Parise wrote: >> >> Yes we are. It seems to be with our larger accounts that we see this >> massive slowdown. Do you want a full S

New AdWords PHP Client (rewrite)

2012-08-07 Thread Brandon Parise
I was wondering if there is anything in the pipeline to rewrite the adwords PHP client. It feels really dated and lacks a lot of essential features of high-end vendor libraries like PSR-0 autoloader, event handlers, proper logging, etc. A utility or plugin repository for features like asynchr

Re: AdGroupAdService Really Slow to get get 10 ads

2012-08-07 Thread Brandon Parise
t; > -David Torres - AdWords API Team > > > On Friday, August 3, 2012 9:16:53 AM UTC-4, Brandon Parise wrote: >> >> Is there anyway to batch ::get() requests like BulkMutateJob? >> >> B >> >> On Friday, August 3, 2012 8:31:05 AM UTC-4, Danial Klimkin w

Re: AdGroupAdService Really Slow to get get 10 ads

2012-08-03 Thread Brandon Parise
nto batches or use reporting if you > need to query large number of AdGroups for Ads. > > > -Danial, AdWords API Team. > > > On Wednesday, August 1, 2012 12:04:36 AM UTC+4, Brandon Parise wrote: >> >> We are experiencing really long response times from the API.

Bulk Downloading Definitions

2012-07-31 Thread Brandon Parise
I have an account that has 150,000 ads that I need to pull down. Up until this point I've been using AdGroupAdService with paging but that's insanely slow (5-10s per 100 definitions). I've seen mention of people using the ReportDefinitionService but I am not sure that's the suggested way. Wha

AdGroupAdService Really Slow to get get 10 ads

2012-07-31 Thread Brandon Parise
We are experiencing really long response times from the API. This operation is trying to get 10 Ads from the AdGroupAdService using NO predicates; Response snippet: https://adwords.google.com/api/adwords/cm/v201109_1";>0004c625a338a6380a96b0047e8cAdGroupAdServiceget10 *3917*10 These histo

Re: Get New Campaigns Only

2012-07-30 Thread Brandon Parise
commend to specify a smaller >> time interval in the selector. If you find retrieving everything for a day >> to be overwhelming, change the date range to one hour and make 24 calls, >> for example. >> >> - Kevin Winter >> AdWords API Team >> >>

Re: Production Environment - FAILED_TO_RETRIEVE_LOGIN_COOKIE

2012-07-26 Thread Brandon Parise
We are encountering the same issue: [AuthenticationError.FAILED_TO_RETRIEVE_LOGIN_COOKIE @ ] Brandon On Thursday, July 26, 2012 2:27:35 PM UTC-4, yaron wrote: > > Hi to the support Team > we are experiencing lots of > FAILED_TO_RETRIEVE_LOGIN_COOKIE api errors during the last few hours > do yo

Keyword MaxCPC

2012-07-17 Thread Brandon Parise
I am trying to get the configured MaxCPC for a keyword, using bids property in; https://developers.google.com/adwords/api/docs/reference/latest/AdGroupCriterionService.BiddableAdGroupCriterion But it's not selectable and doesn't come through the API. Is there any other way of getting this? Br

Re: Get New Campaigns Only

2012-07-17 Thread Brandon Parise
supply the CampaignID's to pass to the CustomerSyncService. On Tuesday, July 17, 2012 4:43:59 PM UTC-4, Brandon Parise wrote: > > Are CampaignID's incremental? > > I am performing a CustomerSyncService operation but don't want to download > the entire list of Campaign&#

Get New Campaigns Only

2012-07-17 Thread Brandon Parise
Are CampaignID's incremental? I am performing a CustomerSyncService operation but don't want to download the entire list of Campaign's each time. I was thinking of using the MAX(CampaignID) from my previous sync as a predicate to only fetch *NEW* campaigns since my last sync: predicates []= n

Re: How to separate specific dates from daterange?

2012-05-17 Thread Brandon Parise
What would be a good use case to pull stats at the Campaign entity rather than through a performance report? On Tuesday, May 15, 2012 10:15:44 AM UTC-4, Kevin Winter wrote: > > Hi, > Alexander is correct - you should use reports. The CampaignService will > return aggregated stats for the date

Re: Create unique criterion id's for same criterion text

2012-05-17 Thread Brandon Parise
Keywords are AdGroupCriterion which means they are unique to the AdGroup they were created. Whenever you perform a mutate() on the AdGroupCriterion (keyword) you must specify the scoping AdGroupId. I can only assume it's this way because if each AdGroup would create a unique Keyword ID then th

Cache AuthToken Benefits?

2011-01-04 Thread Brandon Parise
Is there any benefit of caching an AuthToken locally versus just requesting one each time you invoke the API? The problem with caching is that you have to then wrap every mutate() to catch the ApiException and then regenerate/store the new AuthToken then somehow re-run the mutate(). Seems to be a

Maximum number of Report Definitions?

2010-12-14 Thread Brandon Parise
Is there a maximum number of report definitions you can ADD to a single account? We have added a lot and only get 100 back via ReportDefinitionService::get(), so I was wondering if that was the maximum. Thanks -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discu

Re: Selector.dateRange vs Predicate

2010-12-14 Thread Brandon Parise
eave out the selector.dateRange and Date predicates. > This way, you don't have to create a new report definition every day, > you can reuse the existing report definition. > Seehttp://code.google.com/apis/adwords/docs/reference/latest/ReportDefin... > for details. > > Cheers

Re: Selector.dateRange vs Predicate

2010-12-14 Thread Brandon Parise
gt; > Cheers, > Anash P. Oommen, > AdWords API Advisor. > > On Dec 14, 2:29 am, Brandon Parise wrote: > > > Want to load Keyword Performance Report for "yesterday"... > > > 2010-12-12 through 2010-12-12 > > > What is the difference between

Selector.dateRange vs Predicate

2010-12-13 Thread Brandon Parise
Want to load Keyword Performance Report for "yesterday"... 2010-12-12 through 2010-12-12 What is the difference between: $selector->dateRange = new DateRange('20101212', '20101212'); vs. $startDatePredicate = new Predicate (); $startDatePredicate->field = 'Date'; $startDatePredicate->operator