Using a multi-domain, multi-client reCAPTCHA

I have a system that automatically creates a website for a client. I would like to implement reCAPTCHA on this system, but I need an API key to implement it. Since I have many clients, and clients have access to the file system, I cannot use one public / private key for all clients. Can I create an API key programmatically for each client, or is there another solution? If reCAPTCHA is not possible, is there an alternative that meets this requirement?

+4
source share
2 answers

Since I had the same problem, here is your solution: now you can use the protected token received at: https://developers.google.com/recaptcha/docs/secure_token

Cheers jens

+2
source

Until July 2014 (or so) it was possible to create a global key for reCAPTCHA through the reCaptcha admin page , as can be seen from the screenshot below.

Unfortunately, this option is no longer available. Existing global keys still work, but it is no longer possible to create new global keys. Sorry.: (

"Enable this key on all domains (global key)"

+5
source

Source: https://habr.com/ru/post/1492848/


All Articles