I'm piping a list of URLs through the Goo.gl link shortener, and have a business account with an API that's being read (when I omit it, I get an un-auth'd error, and I see requests logged in my account)
But my rate limit is not being respected?
After 300 requests (about one per second) I get:
{"error"=>{"errors"=>[{"domain"=>"usageLimits", "reason"=>"rateLimitExceeded", "message"=>"Rate Limit Exceeded"}], "code"=>403, "message"=>"Rate Limit Exceeded"}}
Until I stop for a few minutes. If I request again too soon (few minutes), I can get one link shortened, then go back to rateLimitExceeded
.
If I wait an hour or so (not sure exactly) I can rescan another 300.
What's going on, why is my quota 1,000,000 / day, and 1,000 / second and I'm still getting limited?