Hi B. Zwier,

If you have set the RetryCount in your client library, then it will 
*automatically* *retry* your failed requests on a number of times depending 
on your value for this property. However, this does not guarantee that the 
RateExceeded error will be resolved after a max number of retries since 
this error contains retryAfterSeconds based on the guide 
<https://developers.google.com/adwords/api/docs/guides/rate-limits#elements_of_rateexceedederror>
.

Since this error contains retryAfterSeconds, then you still need to 
implement error handling as specified in the example 
<https://developers.google.com/adwords/api/docs/samples/csharp/error-handling#handle-rate-exceeded-error>.
 
This handles the retryAfterSeconds specifically in this code snippet:

Thread.Sleep(rateExceededError.retryAfterSeconds * 1000);
retryCount = retryCount + 1;

Let me know if you have further clarifications.

Thanks,
Vincent
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5a6e021e-437b-48c3-94e5-7ccfba64b069%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • RetryCount &... bzwier01
    • Re: RetryCo... 'Vincent Racaza (AdWords API Team)' via AdWords API Forum

Reply via email to