recaptcha

How to handle recaptcha on third-party site in my client application

一曲冷凌霜 提交于 2019-12-13 20:02:38
问题 I was curious about how people build third-party apps for sites with NO public APIs , but I could not really find any tutorials on this topic. So I decided to just give it a try. I created a simple desktop application, which uses HttpClient to send GET requests to the site I frequently use, and then parses the response and displays the data in my WPF window. This approach worked pretty well (probably because the site is fairly simple). However, today I tried to run my application from a

How to force recheck user with reCAPTCHA?

女生的网名这么多〃 提交于 2019-12-13 19:40:52
问题 I use reCAPTCHA in our registration form. In some instances, I want to force the user to have to recomplete reCAPTCHA. I know I can use grecaptcha.reset(); to reset the reCAPTCHA. My question is, is there a similar command to tell Google this is a high risk user and to force the user to recomplete CAPTCHA (maybe with stronger CAPTCHA), not just simply reset the CAPTCHA? 来源: https://stackoverflow.com/questions/37405130/how-to-force-recheck-user-with-recaptcha

Using reCAPTCHA with ASP.NET MVC

家住魔仙堡 提交于 2019-12-13 11:51:28
问题 I've used reCAPTCHA many times in my WebForms applications. Now I'd like to add it to an ASP.NET MVC application. I found what appears to be some good code in RecaptchaControlMvc but, incredibly, I haven't been able to find a single paragraph or example on how to use this control. I've posted in the Google reCAPTCHA group but it's dead. Can anyone point me to an example that uses this control, a paragraph about how to use it, or suggest an alternative? Note: I know there are similar questions

Using reCAPTCHA with Classic ASP

六月ゝ 毕业季﹏ 提交于 2019-12-13 06:01:37
问题 I'm trying to use this example of classic ASP but I have 2 pages, one is form page, the other is verify page. I'm a total newb at classic ASP so I'm not sure if I'm making some syntax errors or not. https://developers.google.com/recaptcha/docs/asp On my form page, I'm loading reCAPTCHA via JS and that part is working fine. On the verify page, I have the code below. Main code (I removed stuff from Google that I wasn't going to use like generate a recaptcha form field with ASP) recaptcha

JavaScript, JQuery, or AJAX version of Recaptcha Validate

↘锁芯ラ 提交于 2019-12-13 05:39:45
问题 am trying to validate the recaptcha using some js code but am getting some permission Errors "Access is Denied" Is it possible to achieve the validation using the javascript validation code alongside ajax across multiple browsers. <script type="text/javascript"> $(document).ready(function() { Recaptcha.create("var_public_key", recaptchadiv, { theme: "clean", callback: Recaptcha.focus_response_field }); }); function submitFormData() { var urlString = "http://www.google.com/recaptcha/api/verify

How to do a post request for my reCaptcha ajax api?

柔情痞子 提交于 2019-12-13 03:39:33
问题 My reCaptcha is now implemented into my signup process using ajax.. Currently no matter what is typed in the captcha text field it never validates. It just keeps giving me new words to type in. I've figured it's because I need to test if the user entered the right captcha answer. I need to send a POST request. I have no idea how to do this.. I've never had to do this before and the documentation isn't clear enough for me.. I would appreciate any help I could get. Here my code: $(document)

Help dealing with spam logic

冷暖自知 提交于 2019-12-13 03:39:10
问题 I have a blog, and i have decided to use Akismet and reCaptcha for spam filtering, the way i am dealing with spam is a) the user should go through the captcha before posting a comment b) Now even if some spam bypass captcha then i would like Akismet to handle it. For akismet to handle the Spam, i thought of creating two different tables in database for comments, One to store the comments which is not detected by Akismet , The other is to store the Comments that is detected by akismet(Spam).

how to use reCaptcha in ReactNative app?

南笙酒味 提交于 2019-12-13 03:32:09
问题 I have found following lib for use reCaptcha in RN app https://www.npmjs.com/package/react-native-recaptcha my code is import ReCaptcha from 'react-native-recaptcha'; ... <View style={{ flex: 1}}> <ReCaptcha sitekey={'test'} /> </View> but no recaptcha is displayed. Also I have tried sitekey used in one of my websites where reCaptcha worked properly - still nothing. Do I miss something? p.s. github of this lib not exists ( 回答1: I think there is no lib exist for reCaptcha in react native. So

Google Recaptcha error, logs in without completing puzzle but shows tick

非 Y 不嫁゛ 提交于 2019-12-13 03:07:25
问题 I have built a log in system and I am adding google recaptcha for security. I am getting an error on this line: $result = json_decode($url, TRUE); The error says; failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request. This is my first time using recaptcha and I am not sure if this is a common mistake. <?php $secret = '*****'; $response = $_POST['g-recaptcha-response']; $remoteip = $_SERVER['REMOTE_ADDR']; $captcha = file_get_contents("https://www.google.com/recaptcha/api

Two forms on a single page with capcha, html5 form validation is not working anymore

人走茶凉 提交于 2019-12-13 02:57:35
问题 I am currently using two forms on a single page with a generated function to submit the invisible recaptcha with its token. One of the problems is that the html5 form validation is not working anymore, it ignores the "required" tags on the input fields. #sFormId# holds the form ID of the current form in an array. <button id="#sFormId#submit-button" class="button small expand g-recaptcha" data-sitekey="xyz" data-callback="Submit#sFormId#" value="">submit</button> function Submit#sFormId#(token