Search code examples
google-chromerecaptchainvisibleinvisible-recaptcha

Invisible reCAPTCHA gives "Please check your internet connection and reload" error


I have a "Invisible reCAPTCHA" issue.

I have implemented an Invisible reCAPTCHA in my web application and After implemented this functionality works successfully around 10 to 15 days but right now I am getting bellow error.

Errors:

Please upgrade to a supported browser to get a reCAPTCHA challenge.

Alternatively if you think you are getting this page in error, please check your internet connection and reload.

Why is this happening?

enter image description here

My browsers are updated. How to fix this issue?


Solution

  • Now, resolved the invisible reCAPTCHA issue following below steps!

    Solutions - Previously I am using the bundling concepts to render the Google invisible reCAPTCHA APIs scripts i.e.

    bundles.Add(new ScriptBundle("~/bundles/recaptcha", "//www.google.com/recaptcha/api.js").Include("~/Scripts/recaptcha-api.js"));
    

    So, the above invisible reCAPTCHA API scripts is not rendering with secure https port (https: //www.google.com/recaptcha/api.js'). It’s simply render non secure port (http: //www.google.com/recaptcha/api.js'). So Google invisible reCAPTCHA not processing your request successfully!

    Now, I am using the below line of code to rendering reCAPTCHA API scripts i.e.

    @Scripts.Render("https://www.google.com/recaptcha/api.js")
    

    I hope you are enjoying with this post! Please share with you friends. Thank you so much!