Mike Oliver
Mike Oliver

Reputation: 525

Getting dailyLimitExceededUnreg message during development of my app

I'm building an app that uses Google APIs (Drive and Sheets). I'm currently writing code to utilize refresh tokens. So, I'm actually generating unauthorized (401 error) requests on purpose to test my code. Until... I hit this daily unauthorized limit. I'm not sure what I can do. What does "Continued use requires signup." actually mean? Signup for what? Do I need to register my app? Do I have to signup for Google Cloud billing? Any way to avoid this while developing an app?

(Note - I can successfully call the APIs before I hit this limit - when I started working on refresh token processing, so it's nothing related to how I'm generating requests - also I see the same thing in POSTMan).

Any help appreciated...

Upvotes: 0

Views: 132

Answers (1)

ziganotschka
ziganotschka

Reputation: 26836

Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup

This error message usually indicates that you are trying to perform requests without an authorization token or API key.

It is intended behavior from Google's side to avoid abuse.

If you intentionally induce this situation, you have to wait until the next day for your quota to be reset, see here.

Upvotes: 1

Related Questions