reCaptcha global key option dissapeared

1,294 views
Skip to first unread message

Srinivas M

unread,
Jul 22, 2014, 5:42:14 AM7/22/14
to reca...@googlegroups.com
Hi,

When i signup into recaptcha and try to add new site the reCaptha global key option is disappeared.

Do any one let me know how to create global key option.


Fernando Rodríguez García

unread,
Jul 22, 2014, 9:49:53 AM7/22/14
to reca...@googlegroups.com
this is needed, i created a thread yesterday too

https://groups.google.com/forum/#!topic/recaptcha/U6C5qkdmrIg

Ryan Sacksteder

unread,
Jul 22, 2014, 3:58:46 PM7/22/14
to reca...@googlegroups.com
I have run into the same issue. I want to create a set of global keys, but can't find a way to do so. There used to be a checkbox for specifying a global set of keys, but it is no longer visible. Support, is there still a way to create a set of global keys? The reCaptcha documentation says there is, but none of us have been able to find it. Thanks!

Brian Richardson

unread,
Jul 24, 2014, 7:20:36 PM7/24/14
to reca...@googlegroups.com
They seem to have removed this option and said nothing. I wish they would at least update their docs. Also, I find the need for multiple keys rather cumbersome as I am developing a multi-tenant app. Managing all those keys is going to be a pain. I'd really like to know the reasoning for removing this option. I only need basic anti-bot measures; this seems like overkill.

Fernando Rodríguez García

unread,
Jul 25, 2014, 4:50:36 AM7/25/14
to reca...@googlegroups.com
As i stated in my other thread. My framework should work without forcing differents applications to obtain a key. I really need this option so i think some info should be thrown in here

Brian Richardson

unread,
Jul 25, 2014, 11:51:27 AM7/25/14
to reca...@googlegroups.com
I've switched to CaptchaMvc instead:


Just as easy to use, but without the key-per-site hassle.


On Tuesday, July 22, 2014 3:42:14 AM UTC-6, Srinivas M wrote:

Fernando Rodríguez García

unread,
Jul 28, 2014, 4:53:52 AM7/28/14
to reca...@googlegroups.com
We need some info on this topic. We really need those global keys

Javier Maraña Roldán

unread,
Jul 30, 2014, 3:21:32 AM7/30/14
to reca...@googlegroups.com
Hi there,

In our project we are facing the same problem, we need the global key. This feature is no longer available? In the documentation supposedly it can be used.

Thanks in advance for your support!

API Keys

To use reCAPTCHA, you need to sign up for API keys for your site. Unless you select the "global key" option, the keys are unique to your domain and sub-domains. (By default, all keys work on "localhost" (or "127.0.0.1"), so you can always develop and test on your local machine.)

Fernando Rodríguez García

unread,
Aug 19, 2014, 2:36:46 AM8/19/14
to reca...@googlegroups.com
Hello,

Someone from support may tell something to us? 

Thankyou beforehand

omana001

unread,
Aug 19, 2014, 5:47:55 AM8/19/14
to reca...@googlegroups.com
Hello All,

I think Global key option is made obsolete by Google recaptcha . Having said that, we shall still have the same api keys for multiple domains and its easy though.

While registering for api keys, give domain addresses with comma separator, thus they will all share the same keys. Adding to this, maximum domain that shall have same keys is restricted to count 15.(To the maximum, 15 sites shall share the same key.)

Suggestions  highly recommended.

Thanks!
Priya N



Fernando Rodríguez García

unread,
Aug 21, 2014, 2:49:56 AM8/21/14
to reca...@googlegroups.com
Hey Omana011,

Thank you for the tip. It might work for me as a temporary solution, but still its needed some clarification from Recaptcha support team. Im still thinking to use another tool instead of recaptcha because of this matter, and id love to use recaptcha. However i need the global key option, or at least, a global key so the applications made with the framework were doing are able to use it in any domain.

Felipe Nascimento de Moura

unread,
Apr 17, 2015, 12:38:25 AM4/17/15
to reca...@googlegroups.com
yep!!!

what happened?!?!
was this simply...forgothen?!

Ragesh Moorkoth

unread,
Jul 28, 2015, 5:33:35 AM7/28/15
to reCAPTCHA, felipe...@gmail.com
Is there anyother way to create global key.

Regards,
Ragesh M

Ragesh Moorkoth

unread,
Jul 28, 2015, 5:43:50 AM7/28/15
to reCAPTCHA, omana...@gmail.com

Thank you for your suggestion Priya. However I need global key which works for all domains. Is there way to generate it.

Priya N

unread,
Jul 28, 2015, 6:23:37 AM7/28/15
to Ragesh Moorkoth, reCAPTCHA
Ragesh,

Yes, we can have one global key having more than one domain. This is feasible while registering / Modifying site.

For existing registered site, domains can be added in Domains section.

Kindly follow the below steps to generate new key:

1. Login to google recapcha (https://www.google.com/recaptcha/admin#site)
2. Register a new site.
3. Enter the domains. (If its more than one domain enter one domain name per line)
4. Generate the key.

API keys will be generated. 

Please find below screen shot which is self explanatory.

Inline image 1

Hope this is helpful. Please let me know if you need further assistance.

Thanks,
Priya N
--
Thanks,
 
Priya N

Ragesh Moorkoth

unread,
Jul 28, 2015, 10:22:12 AM7/28/15
to reCAPTCHA, omana...@gmail.com

Thanks Priya. As per your suggestion, we always have IP or domain name dependency with keys. 

Is there any way to avoid this dependency.


Regards,
Ragesh M

Mohsin Khan

unread,
Aug 6, 2015, 3:38:37 AM8/6/15
to reCAPTCHA, rageshm...@gmail.com
Hi,

We are also facing the same issue, Global key enable option will be handy, Other wise when ever we want to support new domain, we need to login in admin need to add that domain to support it.

Is there any way to get the global key.

Thanks
Mohsin

Dayjo

unread,
Aug 6, 2015, 6:44:44 AM8/6/15
to reCAPTCHA
Hi everyone,

This can be achieved using the poorly documented "secure" token. You generate a token each time you render a captcha, unique to that page / site without having to specify the domain previously. https://developers.google.com/recaptcha/docs/secure_token

As you can see the documentation is extremely unclear however I've managed to get this to work using the following PHP class to generate the token; https://github.com/slushie/recaptcha-secure-token

Hope this helps you all!

Dave Merrill

unread,
Jun 1, 2017, 10:01:46 AM6/1/17
to reCAPTCHA
Hi folks.

As you'll see on that docs page, the secure token option is deprecated.

I've also tried disabling domain validation in the registration, and leaving the domain field blank, but that shows only the msg "ERROR for site owner: Invalid site key", instead of the CAPTCHA UI.

Really would like a solution to this. If such a thing is possible, it seems poorly documented. If not, that's "inconvenient".
Reply all
Reply to author
Forward
0 new messages