Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

recaptcha https problem on https://api-secure.recaptcha.net/

I am using recpatcha on an SSL site but I am not getting the image on some browsers because the ssl certificate of it has been expired !

https://api-secure.recaptcha.net/

if I reference the non-secure link, the browser will give warning message.

so what is the alternative?

I am using it under ASP.NET MVC.

like image 521
tugberk Avatar asked May 03 '11 06:05

tugberk


People also ask

How do I fix reCAPTCHA verification failed?

Help for reCAPTCHA usersMake sure your browser is fully updated (see minimum browser requirements) Check that JavaScript is enabled in your browser. Try disabling plugins that might conflict with reCAPTCHA.

Why is reCAPTCHA blocking me?

reCAPTCHA support Unfortunately it may happen to good users like you for a few reasons: You may be on a shared network that is being used abusively. Your internet service provider may have recently assigned you a suspicious IP address. The site you are trying to access may be currently under heavy attack.

What is https reCAPTCHA net?

What is reCAPTCHA? reCAPTCHA protects your website from fraud and abuse without creating friction. reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep malicious software from engaging in abusive activities on your website.


2 Answers

As Remy says, you need to update the links to point at Google's servers. See the announcement regarding the expiration of the old URL.

If you are using the .NET Library then you can update to the latest version

If you did not use the library then you can see the modifications made to the library here, and update your URLs in the same manner.

i.e. update https://api-secure.recaptcha.net to https://www.google.com/recaptcha/api

like image 59
Chris Diver Avatar answered Oct 14 '22 00:10

Chris Diver


ReCaptcha was acquired by Google. Have you updated your code to use the new Google links yet?

like image 45
Remy Lebeau Avatar answered Oct 13 '22 22:10

Remy Lebeau