No more recaptcha global key option?

recaptcha

Solution

Google made reCaptcha Global URL possible again in 2016 for the I'm not a Robot checkbox:

- https://developers.google.com/recaptcha/docs/domain_validation

Now to get the keys to work on every URL you have to go to: "Advanced Settings" for your key, and untick the "Domain Name Validation" box:

- https://www.google.com/recaptcha/admin

This is a security hole, so you are required to check the hostname field in your JSON response and reject any solutions that are coming from unexpected sources:

- https://developers.google.com/recaptcha/docs/verify#api-response

Problem

I am curious if there's still possibility to create global keys for reCaptcha. Documentation points it is possible, but I can find no way - no such option is there whenever I add a site.

Original source

Related problems