Skip to main content

Posts

Showing posts with the label Invisible reCAPTCHA

Google invisible reCAPTCHA issue - Please upgrade to a supported browser to get a reCAPTCHA challenge!

Now, resolved the invisible reCAPTCHA issue  following below steps ! Issue -   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. Stayed Informed - Google's Invisible reCAPTCHA in ASP.NET MVC 5 Using Action Filters 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 rende...

Google - Invisible reCAPTCHA your Webpage and Mobile Apps!

This blog Post will helps you to understand and learn how to enable and customize the Invisible reCAPTCHA on your webpage?.  There are two ways to enable and customize the Google  Invisible reCAPTCHA i.e. 1.       HTML and JavaScript API Resource Configuration 2.       Google's New Invisible reCAPTCHA in MVC 5 Using Action Filters HTML and JavaScript API Resource Configuration- Steps 1 - Go to URL https://www.google.com/recaptcha/admin and login with your credentials. Steps 2 - Register the reCAPTCHA for your site with your site Label. Select your Invisible reCAPTCHA radio button. After selecting Invisible reCAPTCHA, we will need to add your Domains mane where you want to add this Invisible reCAPTCHA and click on register with terms of services. For example - My added domain is - localhost and site Label is - test After successful register, you can see a screen like below pic. Generated Ad...