Re: RateExceededError rateName=BillingPerDay

2013-04-02 Thread Elena Grigoreva
Up) The error still occures.. While adding new company I received the same error. Can anybody look for it? Sever responce: soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/; soap:HeaderResponseHeader xmlns= https://adwords.google.com/api/adwords/cm/v201302;requestId

Re: Unmarshalling Error with Selector in v201302 (aw_api_php_lib_4.1.1)

2013-04-02 Thread Paul Matthews (AdWords API Team)
This issue has now been fixed, at: - change sethttps://code.google.com/p/google-api-adwords-php/source/detail?r=365f3a63326f875621327147f415e2bab263e1fc - downloadshttps://code.google.com/p/google-api-adwords-php/downloads/list Regards, - Paul, AdWords API Team. -- --

Can we use old client library adwords-api-8.11.0 jar to work with V201302

2013-04-02 Thread Sanju A
Hi, Previously working on V201206 and V201209 versions we have used jars like adwords-api-8.7.0.jar and adwords-api-8.8.0.jar resp and worked fine. But now we are going to start up grading our product to new version V201302 but we are struck with small confusion. I have seen

Re: Didn't see the package v201302 within adwords-axis-1.12.4-sources.jar

2013-04-02 Thread Sanju A
Hi, I have seen adwords-api-8.11.0 jar ( https://code.google.com/p/google-api-adwords-java/downloads/list) which supports V201302 and also I have seen axis jar in https://code.google.com/p/google-api-ads-java/downloads/list so my qustion is which we need to follow. There is slight difference in

Re: how to set keyword's bid as default?

2013-04-02 Thread Takeshi Hagikura (AdWords API Team)
Hi Yu-san, I believe basically it's correct. As a note, when adding a keyword, you can also omit the BiddingStrategyConfiguration in the Keyword criterion. Then, the parent's AdGroup's default bid will be used. Best, - Takeshi, AdWords API Team On Friday, March 29, 2013 9:15:12 PM UTC+9,

PLACEMENT_PERFORMANCE_REPORT

2013-04-02 Thread Dmitriy
Hi, Does subject in production? I have try to download ones and got empty data. [Apr 02 2013 12:17:29.00 - INFO] POST /api/adwords/reportdownload/v201302 HTTP/1.1 User-Agent: curl, gzip Host: adwords.google.com Accept: */* Accept-Encoding: gzip Authorization: GoogleLogin auth=***

Is it possible to access clients in an MCC through the API?

2013-04-02 Thread Alan Coleman
Hello, My application can run a particular client id in an MCC. I'm currently adding these clients manually to my application as and when I need to use them. Ideally I'd like to be able to access all of the clients in an MCC through the API So that I can store them locally and set about some

Re: how to set keyword's bid as default?

2013-04-02 Thread 澤井悠
Hi Hagikura-san, Thank you for researching. I understand they're the specs and my code was basically correct. By the way, hopefully we will be able to see how to write code for changing keyword's bid to default ad group bid in the sample code of the next API version. :) Best, Yu Sawai

Re: LocationSyncExtension - Help on OAuthInfo

2013-04-02 Thread Kaushik Sahoo
I tried creating OAuth access using https://adwords.google.com/api/adwords/; scope and passed the 'Access Token' received as httpAuthorizationHeader but got INVALID_OAUTH_TOKEN_FOR_EMAIL error. How can we get httpAuthorizationHeader information from OAuth authentication response? I've no

This may sound like a silly Question, but what version am I running?

2013-04-02 Thread Alan Coleman
Hello everyone, I've just spotted the following in AdWordsUser.php: private static $DEFAULT_VERSION = 'v201206'; However I was under the impression I was using version v201209. This is a little worrying as v201206 has now been sunset, although my application is still working. Generally,

Re: API responds with 403 on one machine and not on others

2013-04-02 Thread Jonathan Wu
Nope. We actually have access to numerous client accounts. This particular account is the only one with an issue on that machine. I at first thought that the account wasn't fully authorized for API access, but then I tried it in my local dev environment and it worked. On Monday, April 1, 2013

Re: Adgroup's TargetingSetting not retrieved in v201302

2013-04-02 Thread valeriy
I have same problem AdGroup.Settings (https://developers.google.com/adwords/api/docs/reference/v201302/AdGroupService.Setting.html) are not returned by the service. They are changed to non-default values. They are returned after mutate requests, but not get requests. settings

Concurrent requests not working on our production server

2013-04-02 Thread Stephane Guerin
Hi, We have one weird problem with our ASP.NET MVC 4 application. Server is a windows 2008 fully patched and up to date. We use AdWords API DotNet Client Library https://code.google.com/p/google-api-adwords-dotnet/. We ask for small reports, around 25 per batch. If we launch around 25 threads

Re: Predicate - Filtering not null

2013-04-02 Thread Kaushik Sahoo
I'm using v201209 of Adwords Api + Java old client Library(8.10) On Monday, 11 February 2013 20:40:09 UTC+5:30, Kaushik Sahoo wrote: How do we filter out not null values while using Predicates? For e.g, new Predicate(DestinationUrl, PredicateOperator.NOT_EQUALS, new String[] {Value})

Re: Predicate - Filtering not null

2013-04-02 Thread Kaushik Sahoo
The workaround I used was this:- new Predicate(DestinationUrl, PredicateOperator.STARTS_WITH, new String[] {http}) So, this would basically give me all the destination URLs(as it can start with either 'http' or 'https') which are NOT NULL. But can we do it with PredicateOperator.NOT_EQUALS?