You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RecaptchaServices.cs
Sitecore-Forms-Extensions-master\src\Feature\FormsExtensions\code\Fields\ReCaptcha
Line 25
var responseMessage = await client.PostAsync("https://www.google.com/recaptcha/api/siteverify", formContent);
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Here is the instructions from google
https://developers.google.com/recaptcha/docs/faq#can-i-use-recaptcha-globally
When using from China need to use
https://www.recaptcha.net
instead of
https://google.com
Google in general is blocked in China
The javascript we can change to use recaptcha.net but this file in the backend references google.com
ReCaptchaService.cs
src/Feature/FormsExtensions/code/Views/FormBuilder/FieldTemplates
RecaptchaServices.cs
Sitecore-Forms-Extensions-master\src\Feature\FormsExtensions\code\Fields\ReCaptcha
Line 25
var responseMessage = await client.PostAsync("https://www.google.com/recaptcha/api/siteverify", formContent);
At the bottom of the file
<script src="https://www.google.com/recaptcha/api.js?onload=loadReCaptchas&render=explicit&hl=@Sitecore.Context.Language.CultureInfo.TwoLetterISOLanguageName" async defer></script></script>
}
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: