Re: RateExceededErrors

2011-04-12 Thread Greg Heidel
? Have you tried getBulkKeywordIdeas? Pete On Apr 12, 11:39 am, Greg Heidel ghei...@gmail.com wrote: I am using the TargetingIdeaService, passing in a URL and requesting 100 keyword ideas. RelatedToUrlSearchParameter          Passing in a URL KeywordMatchTypeSearchParameter

Python client library for v201101

2011-04-11 Thread Greg Heidel
Is there a new Python client library available for v201101? The current version does not appear to support this? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api

RateExceededErrors

2011-04-11 Thread Greg Heidel
The number of RateExceededErrors seems to increase over time, even if I space out my requests. Even increasing the wait time beyond the 30 seconds that is returned in the API call does not seem to help. I even stopped sending any requests for a couple of days but it seems once an account starts

Re: RateExceededError question.

2011-02-15 Thread Greg Heidel
I am having the exact same problem however about a week or so ago, I was able to process around 1700 URLs in an hour, now I can only process about 75 in an hour? I am getting so many rate limits on the account that the retries are causing the program to slow to a crawl. In testing, even running 5

TargetingIdeaService - RateExceeded Errors

2011-02-15 Thread Greg Heidel
service = TargetingIdeaService method = get searchParameter = RelatedToUrlSearchParameter requestedAttributeTypes = [ 'GLOBAL_MONTHLY_SEARCHES', 'AVERAGE_TARGETED_MONTHLY_SEARCHES', 'COMPETITION',

AdWords API TargetingIdeaService results

2010-04-14 Thread Greg Heidel
Any updates on how the API determines the order of the TargetingIdea results for the Get call? I know that it has been mentioned that it is in relevance order but I would appreciate an update on what criteria is determining relevance, if one is available. --

AdWords API Python API v10.0.1

2010-04-14 Thread Greg Heidel
I am having trouble getting any Python API call to succeed and I am not getting any useful error information returned. Here is the result of running an example program: C:\Research\Python\Libraries\awapi_python_lib_10.0.1\examples\v200909 \python26\python get_geo_location_info.py Traceback (most

AdWords API Re: Python API v10.0.1

2010-04-14 Thread Greg Heidel
I resolved this issue... On Apr 14, 12:42 pm, Greg Heidel ghei...@gmail.com wrote: I am having trouble getting any Python API call to succeed and I am not getting any useful error information returned. Here is the result of running an example program: C:\Research\Python\Libraries

AdWords API v200909 Authentication

2010-03-11 Thread Greg Heidel
I am using the following code to initialize the service: var requestHeader = new RequestHeader { authToken = new AuthToken(gheidel...@gmail.com, Demand78704).GetToken(), clientEmail = gheidel...@gmail.com,

AdWords API Re: v200909 Authentication

2010-03-11 Thread Greg Heidel
I changed the URL to: _targetingIdeaService.Url = https://adwords.google.com/api/adwords/o/ v200909/TargetingIdeaService; and now I get an error that the authToken is missing in the soap header... On Mar 11, 4:04 pm, Greg Heidel ghei...@gmail.com wrote: I am using the following code

AdWords API Re: v200909 Authentication

2010-03-11 Thread Greg Heidel
The issue was the namespace issue that I saw in another posting. I set the target namespace in the request header as follows and it worked: TargetNamespace = https://adwords.google.com/api/adwords/cm/v200909; On Mar 11, 4:04 pm, Greg Heidel ghei...@gmail.com wrote: I am using the following code