Hi Andras,

The RateExceededError 
<https://developers.google.com/adwords/api/docs/guides/rate-limits#elements_of_rateexceedederror>
 contains 
these three important fields:

   - rateScope - The scope of the rate that was exceeded, which can be 
   ACCOUNT or DEVELOPER.
   - rateName - Contains the name of the rate limit that was exceeded. The 
   value can be, for example,RequestsPerMinute.
   - retryAfterSeconds - Contains the suggested number of seconds your 
   application should wait before retrying the request. 

You can decompose the RateExceededError object to get these details. For 
example, in the PHP client library you can use the code below to get error 
details. 

catch (SoapFault $fault) {
    $errors = ErrorUtils::GetApiErrors($fault);
}

Let me know if this works.

Regards,
Shwetha, 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/b9f60078-9a96-488f-b784-02758d5e4c7b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • RateExceededErr... András Révai
    • Re: RateEx... 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum

Reply via email to