mmullerc
mmullerc

Reputation: 111

What happens when recaptchaV3 monthly quota is reached?

According to google documentation:

If a v3 site key exceeds its monthly quota, then site_verify may fail open by returning a static score 0.9 and an error message "Over free quota." for the remainder of the month. There are no user-visible indications when v3 sites are over quota.

They don't really specify what the response will be like, will the success indicator still be true? Meaning that the token was successfully validated? Will they still send the action in the response?

I'm not concerned about the static 0.9 score, but rather that the success indicator being false or the action being empty would cause issues for me.

Has anyone had to deal with reaching recaptchasV3 limit before?

Any help is appreciated, thanks.

Upvotes: 8

Views: 567

Answers (1)

Azog Mugen
Azog Mugen

Reputation: 659

I never had to deal with limits of recaptchaV3 before. It seems developers.google.com and cloud.google.com don't provide the same information about recaptchas.

According to https://cloud.google.com/recaptcha/quotas?hl=en :
When your API usage quotas exceed the specified quotas limit, any new request returns an HTTP error with a Resource Exhausted (429) status code.

Which quite different for the other info you got from https://developers.google.com/recaptcha/docs/faq?hl=en.

cloud.google.com seems more complete and provides also a link to view and manage quotas : https://cloud.google.com/docs/quotas/view-manage?hl=en#managing_your_quota_console.

The solution when over quota from cloud.google.com is to enable billing, but I could not find any info about the price of over-quota requests.

Upvotes: 2

Related Questions