Hi,

Today i am facing *RateExceededError *on my standard account when 
performing batch operations on single request(1000 operations in each 
mutate request).

It returns retryAfterSeconds=86400 not warning for  retryAfterSeconds=30 
seconds for the first time after *9* success mutate calls(1000 operations 
in each mutate request).

[faultMessage=[RateExceededError <rateName=BillingPerDay, 
rateKey=level1_plan, rateScope=DEVELOPER, retryAfterSeconds=86400>]


Can anyone post an proper  examplen In *PHP *to handle 
RateExceededError.retryAfterSeconds 
? like the below one in Written in JAVA

try {
  ...
} catch (ApiException e) {
  for (ApiError error : e.getErrors()) {
    if (error instanceof RateExceededError) {
      RateExceededError rateExceeded = (RateExceededError) error;
      Thread.sleep(rateExceeded.getRetryAfterSeconds() * 1000);
    }
  }
  ...
}

Please help, it's an urgent. Thanks in advance


Sarah Riddle



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/289f0a9f-4fd8-4f43-ac38-81f21759bd95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to