recaptcha

Pyramid with reCaptcha: how to implement?

╄→гoц情女王★ 提交于 2019-12-12 02:55:14
问题 I want to add the most popular captcha client on my site - reCaptcha. But I didn't found any examples or tutorials in internet... Maybe somebody knows how to do it? I'll be very appreciate for any help!!! 回答1: There is full API documentation available for reCATPCHA here. It probably has sample code, too. I found this by going to the reCAPTCHA website and clicking on the FAQ link. And of course, you sign up for the service here. That's pretty obvious from the home page. 回答2: You need to do two

Google reCAPTCHA: show only digits in recaptcha image?

白昼怎懂夜的黑 提交于 2019-12-12 02:04:48
问题 I am hoping to use Google's free reCAPTCHA service on a web form. https://developers.google.com/recaptcha/docs/display However, I don't want the distorted letters or words to show in recaptcha images. I feel these distorted letters give visitors too much frustration, and I did read negative comments about using distorted words as the challenge. So I hope that only digits show up in recaptcha images. Is this something developers like us can configure and control? I googled and did not find

Captcha uses offline resources

拥有回忆 提交于 2019-12-11 22:01:03
问题 I want to create a CAPTCHA verification of my application, my application is developed using GWT, which not use online resources. I've tried with reCaptcha, but recaptcha have to access the api hosted in the google.com. Is there any ways to make it working in my local network which totally can not access any resource of the internet? thanks 回答1: You can use a local library like SimpleCaptcha. Here an article that explain how to use it with GWT: http://www.javacodegeeks.com/2010/06/add-captcha

Kentico reCaptcha does not block form submission

我的梦境 提交于 2019-12-11 19:33:25
问题 I have the reCaptcha FormControl in my WebPart <script src='https://www.google.com/recaptcha/api.js'></script> ...... <div class="form-group"> <label>Please type the word below. If required use the buttons to change or listen to the word.</label> <cms:RecaptchaControl ID="reCaptchaVld" runat="server" data-theme="clean" data-callback="cpCallBack();" PrivateKey="xxxxxxxxx" PublicKey="xxxxxxxxx" data-recaptcha="" CssClass="g-recaptcha" /> </div> I did a test that I filled all required field but

Why does my PHP reCAPTCHA only display on Chrome and Safari?

匆匆过客 提交于 2019-12-11 19:00:48
问题 I'm using the PHP reCAPTCHA on my company's website. I basically just followed this tutorial https://developers.google.com/recaptcha/docs/php which is pretty straightforward. Anyway, everything displays and submits fine on Chrome and Safari, but on IE10 and Firefox the reCAPTCHA box simply doesn't show up client-side. I somewhat diverge from the tutorial in the way that I don't have a separate verification page, but I still don't see how this would affect the image displaying on various

ionic firebase phoneAuth without recaptcha on ios

帅比萌擦擦* 提交于 2019-12-11 17:46:01
问题 I have an ionic app where i use firebase phone authentication which uses recaptcha. It works fine on android but throws error on ios saying recaptcha can only be run in an http environment. I would like to know if there's a way to perform firebase phone auth without using recaptcha. this.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('recaptcha-container',{ 'size': 'invisible' }); let appVerifier = this.recaptchaVerifier; this.appService.sendPhoneVerification(phoneNumber,appVerifier)

Uncaught Error: reCAPTCHA has already been rendered in this element

安稳与你 提交于 2019-12-11 17:16:51
问题 I am trying to place multiple Captcha in single vf page. this are written in visualforce component. while loading i am able to see only one Captcha. when i have done inspect elements i got this error: error Message pic VF Component: <apex:component > <apex:attribute type="CmpResult" name="recaptaReslt" required="true" description="Show or Hide the button" assignTo="{!reslt}"/> <head> <apex:slds /> <script type="text/javascript"> var onloadCallback = function() { grecaptcha.render('theCAPTCHA'

What is wrong with my form.php (reCaptcha) [duplicate]

北城余情 提交于 2019-12-11 17:04:37
问题 This question already has answers here : my server side PHP still got hacked after reCaptcha (hundreds-spam-emails) (3 answers) Closed last year . i am now 12 hours on this problem because someone is spamming me with bots. I posted it before but without good results. I checked the code with alot of other examples. The problem starts when someone told me this was wrong ( if($response.success==false) ) and it should be if($result->success==false) or if($result['success']==false) but the last

Validate recaptcha ajax and codeigniter

烈酒焚心 提交于 2019-12-11 16:58:34
问题 I am using Codeigniter and Ajax to validate and submit the email form. I tried many methods, it keeps giving me the result {"sent":false} it was working great before I add the recaptcha lines. here is my code: custom.script.js $("#ajax-contact-form").submit(function() { var href = 'http://localhost:8888/en/send'; var name = $("#form-name").val(); var email = $("#email").val(); var phone = $("#phone").val(); var title = $("#form-title").val(); var message = $("#form-message").val(); $.ajax({

Python + Selenium + 2Captcha

房东的猫 提交于 2019-12-11 16:39:21
问题 I'm trying solve re-captcha in a site using 2captcha service, but always returns to me the error: Traceback (most recent call last): File "C:\Users\pablo\Desktop\selenium\MercBitk.py", line 48, in GChrome.find_element_by_xpath("//*[@id='g-recaptcha-response']").send_keys(resp.text[3:]) File "C:\Python34\lib\site-packages\selenium\webdriver\remote\webelement.py", line 479, in send_keys 'value': keys_to_typing(value)}) File "C:\Python34\lib\site-packages\selenium\webdriver\remote\webelement.py"