recaptcha

.NET Recaptcha https

五迷三道 提交于 2019-12-19 02:51:37
问题 We've started using the ASP.NET recaptcha control and it works fine. but one of the requirements we have is that all outbound traffic goes over Https. I know that recaptcha supports https, but It's not clear how to configure (or even if it is configurable) when using the ASP.NET plugin option. has anyone got any experience of this? I'll expand a little on what I've found so far.... The Recaptcha package contains 3 public classes RecaptchaControl, RecaptchaValidator and RecaptchaResponse

Test invisible recaptcha

[亡魂溺海] 提交于 2019-12-18 18:38:36
问题 We have integrated invisible recaptcha in one of our websites. Whenever we submit the form it automatically submits. I read in some google groups that we would get a challenge when accessed on edge browser. But for us, it is automatically submitted. Any specific steps to test the invisible recaptcha? 回答1: You can test invisible recaptcha by using Chrome emulator. You will need to add a new custom device (BOT) in developer tools, and set User Agent String to Googlebot/2.1 on Desktop . Then use

How could we integrate the Captcha in iOS application?

百般思念 提交于 2019-12-18 12:26:06
问题 I googled for integration of Captcha in iOS app but do not found any relevant way to do so. Even i sign up with reCAPTCHA and searched whether the plugins for Captcha are available for iOS or not? I didn't found any plugin for iOS there. Somewhere while RND i come to know that "its not needed for the mobile apps" , But the client wants the Captcha in his application so ,I want to know :- Whether we can integrate the Captcha in iOS App/Mobile Apps :- If Yes? : Then what would be the relevant

How to reload the google recaptcha widget after user submits invalid inputs

こ雲淡風輕ζ 提交于 2019-12-18 11:18:13
问题 I have a registration form with the new google recaptcha widget on it. When a user submits info, we check the validation with javascript and return the problems to the page (ex: "please use a valid phone number"). however, since the page doesn't reload, when the user enters correct info and goes to submit again (without having to do the recaptcha again)...the recaptcha is no longer valid and they can't submit without reloading the page. is there a good solution to this? can I reload the

Implement the new Invisible reCaptcha from Google

浪子不回头ぞ 提交于 2019-12-18 10:13:33
问题 I'm building a PHP website where I would like to put a captcha on the login form. I went with Google's new Invisible reCaptcha but I'm having trouble with implementing it (HTML part, the PHP is working). The code I've got now for the "normal" reCaptcha is the following (as according to the Google reCaptcha instructions and this works): <form action=test.php method="POST"> <input type="text" name="email" placeholder="Email"> <input type="password" name="password" placeholder="Password"> <!--

Django - adding google recaptcha v2 to login form

一世执手 提交于 2019-12-18 09:26:35
问题 I'm triying to add Recaptcha to my login form in Django. I tried different libraries but none of them seems to work, since the captcha form just doesn't appear in my template. Here is my current work: urls.py path(r'captcha/', include('captcha.urls')) forms.py class NewUserForm(UserCreationForm): email = forms.EmailField(required=True) class YourForm(forms.Form): captcha = CaptchaField() class Meta: model = User fields = ("username", "email", "password1", "password2") def save(self, commit

reCAPTCHA Ionic/cordova on Android

不羁的心 提交于 2019-12-18 09:08:30
问题 i'm facing an issue with reCaptcha for Android on my Ionic app. I use https://github.com/DethAriel/ng-recaptcha in my form like this : <ion-list no-lines> <ion-item no-padding> <ion-input [(ngModel)]="form.email" (ionChange)="checkButton()" name="email" type="email" placeholder="{{ 'pages.get_started.slide_1.input_1' | translate }}" clearInput="true"></ion-input> </ion-item> <ion-item no-padding> <ion-input [(ngModel)]="form.username" (ionChange)="checkButton()" name="username" type="text"

Invisible Google reCaptcha with AngularJS

江枫思渺然 提交于 2019-12-18 09:00:35
问题 I'm trying to implement the invisible reCAPTCHA in my AngularJS web app. According to their doc, I'm supposed to add an attribute called "data-callback" to the submit button for the login form. However, I am attaching the function for the http request to the button using ng-click. Then what should I put in "data-callback" attribute's value? Also, how can I know if the recaptcha result is successful or not, and get g-recaptcha-response to send to the server with my http request? https:/

Google ReCaptcha 2 auto submit

蓝咒 提交于 2019-12-18 08:54:32
问题 My users will see a google repcatcha2 (nocaptcha) in a web page. When they solve the captcha (put the tick in the box) the form should be automatically submit. Is there any way to do that? 回答1: Sure you can do it. In this post I've explained how to insert reCaptcha into a site and to code javascript to verify user and site. Add a name to your form with reCaptcha: <form method="post" name="myform"> Add document.myform.submit(); code for submitting of the form upon the site verification success

How can I load a reCaptcha form using jQuery/AJAX while leaving the reCaptcha scripts in place?

痞子三分冷 提交于 2019-12-18 05:28:30
问题 I load my contact form into my page with JQuery/AJAX. The contact form contains the reCaptcha scripts. Unfortunately, JQuery removes the script tags before inserting them into my page. These script tags are needed because they output the captcha. now my loaded form has no captcha. 回答1: The link has all you need: http://code.google.com/apis/recaptcha/docs/display.html You can't add the script in ajax. You should add the following line before : <script type="text/javascript" src="http://www