Hello Team,
Right now ReCAPTCHA integrated shows characters to enter for security
I want to implement New Google ReCAPTCHA for SmartStore.Net
It needs following configuration for using new ReCAPTCHA
should i write plugin for make changes in code itself?
Step 1: client-side integration
Paste this snippet before the closing </head> tag on your HTML template:<script src='https://www.google.c...i.js'></script>Paste this snippet at the end of the <form> where you want the reCAPTCHA widget to appear:<div class="g-recaptcha" data-sitekey="6LeLEAoTAAAAAImkpWOvIDVkZ9svZgQ83_i02ENg"></div>The reCAPTCHA documentation site describes more details and advanced configurations.
Step 2: Server side integration
When your users submit the form where you integrated reCAPTCHA, you'll get as part of the payload a string with the name "g-recaptcha-response". In order to check whether Google has verified that user, send a POST request with these parameters:
secret(required)
6LeLEAoTAAAAAHZA3cy_dYl2TaPfWNPgBDv1j40y
response(required)
The value of 'g-recaptcha-response'.
remoteip
The end user's ip address.