recaptcha

Make google Recaptcha work with special characters in the domain name

左心房为你撑大大i 提交于 2019-12-12 10:38:32
问题 I was setting up an API key for a site with the swedish charachter ä in the domain name (http://sälja.io) but it did not initialize the recaptcha. Then trying an api key for the equivalent url http://xn--slja-loa.io which worked when reaching the site from http://xn--slja-loa.io but not http://sälja.io. Then I found the secure token which should work on all domains. It initialized the recaptchas on all domains and was also working on all tested domains, except the one with ä in it . https:/

How to manually call (find) the ReCaptcha Callback function?

眉间皱痕 提交于 2019-12-12 09:54:41
问题 I'm currently experimenting with captcha solving, and have decided to use the popular 2captcha service to do so. Their approach is to send them the recaptcha values (google recaptcha key & site thread), then they solve it and send me back the finished value that is supposed to be sent to google to check that the captcha have been solved. I'm stuck on the last step; using the returned solved value and send it to google. As the docs https://2captcha.com/2captcha-api#callback explain, I find no

Rendering reCAPTCHA v2.0 widget within Backbone view

自闭症网瘾萝莉.ら 提交于 2019-12-12 09:14:26
问题 This is my issue, I have an index.html page which loads the reCAPTCHA script explicitly: <script src="https://www.google.com/recaptcha/api.js?onload=loadCaptcha&render=explicit" async defer></script> I have a template which contains the reCAPTCHA container element (div): <form id="payment-<%= model.Id %>" class="form" action="" method="POST"> ... <div class="captcha-container"></div> //not being used yet </form> And I have a backbone view which injects the template into index.thml: 'use

reCAPTCHA v3 network intensive web applications

落花浮王杯 提交于 2019-12-12 07:58:57
问题 I'm using Google's reCAPTCHA v3 in an Angular 2 application to protect from automatic form submission. My application makes many network calls in the background as users' interact with the UI. From index.html , I make an intentionally blocking call to load the library (preventing the Angular world from entering before recaptcha/api.js is loaded): <script src="https://www.google.com/recaptcha/api.js?render=reCAPTCHA_site_key"></script> From the constructor of an Angular Service I use the

Setting recaptcha in a different language other than english

人走茶凉 提交于 2019-12-12 07:48:45
问题 Is it me or is recaptcha images cannot be translated to another language other than EN? I have and it is still in English. Is this intentional? 回答1: For reCAPTCHA 2. Since a while have passed This is your link to cdn look at the end, hl parameter <script src="https://www.google.com/recaptcha/api.js?onload=myCallBack&render=explicit&hl=fr" async defer></script> This is your captcha inside the form <div id="recaptcha1"></div> This is your javascript you can specify the lang code here too, I

405 error without Access-Control-Allow-Origin in response from Google reCAPTCHA

隐身守侯 提交于 2019-12-12 07:28:52
问题 I am trying to implement reCaptcha by google, but the validation is failing when i call the api mentioned below. In reCaptcha/admin i have mentioned localhost in the Domains list. google.com/recaptcha/api/siteverify Below is the error that i have been getting. XMLHttpRequest cannot load https://www.google.com/recaptcha/api/siteverify. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http:/

Use reCaptcha in WPF App

余生颓废 提交于 2019-12-12 07:16:09
问题 I'm looking for solution how to integrate WPF desktop application with reCaptcha! Anyone knows the solution? I'm working on registration module to my application, and need good and simple captcha. Thanks! 回答1: See https://developers.google.com/recaptcha/docs/display and https://developers.google.com/recaptcha/docs/verify. You could make an request to http://www.google.com/recaptcha/api/challenge?k=your_public_key and parse the ChallengeValue. This value can be used to get the recaptcha image

Remove reCAPTCHA site on Admin Console

本秂侑毒 提交于 2019-12-12 06:57:12
问题 Pretty simple. I feel like there's a setting or button somewhere that I'm not seeing. I have a list of sites I've registered with reCAPTCHA. I want to delete one on the admin console. How do I do it? When I go into the settings on one of the sites there doesn't seem to be a way to delete. 回答1: I was right, there's a delete button I didn't see! Click the cog at the top to enter the settings of the page you want to delete. Then there's a delete button in the header of that page. Hopefully this

Contact form with reCaptcha [closed]

我们两清 提交于 2019-12-12 04:16:17
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I know this may have been submitted before (sorry) I have basic form, these are the details id like to be sent, however i cannot get the reCaptcha to work with it. I have googled all day, but when i try other peoples code (amending to fit mine) it doesnt seem to work. I would like: Name, Email, Number,

reCaptcha validation time out

夙愿已清 提交于 2019-12-12 03:14:23
问题 I am trying to validate Google reCaptcha on my 1and1 hosted website. But when I execute this function on Server, It takes too long and my page is timed out. Can anyone point me out what is causing problem. private string VerifyRecaptcha(string secret, string responseCode) { WebRequest request = WebRequest.Create("https://www.google.com/recaptcha/api/siteverify"); request.Method = "POST"; string postData = "secret=" + secret + "&response=" + responseCode; byte[] byteArray = Encoding.UTF8