Franklin
Franklin

Reputation: 588

Google UrlShortener 403 Rate Limit Exceeded

suddenly as of 6pm yesterday I started getting a 403 from Google

{
"error": {
    "errors": [
        {
            "domain": "usageLimits",
            "reason": "rateLimitExceeded",
            "message": "Rate Limit Exceeded"
        }
    ],
    "code": 403,
    "message": "Rate Limit Exceeded"
}

}

100% of our requests are getting this error. I checked my rates and we are nowhere near the limit. This code has been in place for a year. Any ideas?

These are typical rates for us

Upvotes: 6

Views: 392

Answers (2)

Rogelio
Rogelio

Reputation: 16

Had the same issue but it seems to be working now. The URL shortner API is being deprecated. We had to implement FireBase as well.

Upvotes: 0

juanchavezlive
juanchavezlive

Reputation: 182

It seems to be a problem related to Google directly.

We have experienced the same problem during today, and we changed the implementation to FireBase (https://firebase.google.com/). It's not hard to do it.

Note: Google recommends use Firebase because the soon outage of Google URL Shortener.

Upvotes: 1

Related Questions