invisible-recaptcha

Error 401 sending recaptcha token with requests

谁都会走 提交于 2021-02-10 22:18:02
问题 I tried to make a cart for this site: https://www.off---white.com/en/IT When I tried to send values for the params of the cart, one of this params is a token of recaptcha. I tried manually to get the token using this project 'https://github.com/Cosmo3904/Recaptcha-Harvester-V2' When I tried to make the request I pass all params: token = 'recaptcha_token' #(I get it manually and expires every 110s) payload = {"variant_id": "111380", "quantity": "1", 'g-recaptcha-response': token} s = requests

Google Invisible ReCaptcha on multiple forms in a same page - PHP

浪子不回头ぞ 提交于 2021-02-04 11:46:11
问题 I am following this Invisible ReCaptcha doc on my php website: http://www.pinnacleinternet.com/installing-invisible-recaptcha/ everything works well. but while implement on multiple forms in a same page then Captcha only work on first form and not sure what’s happening with the second form, I curious to know how its work with multiple forms in a single page. Or anyone please suggest a working doc for multiple forms? //this is @Geordy's javascript portion modified according to jquery.validate

Displaying iframes in Office applications embedded browser

和自甴很熟 提交于 2021-01-29 20:00:38
问题 We included Google reCaptcha v3 in a custom login page that protects SharePoint. The solution works in all browsers except the embedded browser of Office applications. We receive the following error from Word if we try to login via the embedded browser after opening a document from SharePoint: Your organization's policies are preventing us from completing this action for you. For more info, please contact your help desk. reCaptcha uses an iframe to work. This iframe looks like this: <iframe

Bootstrap 4 Validation reCaptcha

假装没事ソ 提交于 2021-01-29 09:37:34
问题 Since Bootstrap 4 has their own form validation i like to add the Google Invisible reCaptcha to it. But how can i activate grecaptcha.execute(); in the javascript to make it work? It should execute the reCaptcha after Bootstrap Validation was successfull and not before. Here is my code: <?php if($_SERVER["REQUEST_METHOD"] === "POST") { // Google reCaptcha $ip = $_SERVER['REMOTE_ADDR']; $api_response = file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$secretkey."

Google recaptcha error in ie 11

依然范特西╮ 提交于 2020-12-28 20:41:38
问题 I am getting the following error in IE 11: SCRIPT5007: unable to get property "toString" of undefined or null reference recaptcha__iw.js (451, 41) Could it be possible that there is an error in the script? Working on Safari, Chrome and Firefox. 回答1: Add this meta on the html header to enable some HTML5 feature for Internet Explorer 11.. <meta http-equiv="X-UA-Compatible" content="IE=edge"> If it's not working then open Compability View Settings and remove google.com Open developer tools and

Google recaptcha error in ie 11

旧巷老猫 提交于 2020-12-28 20:35:08
问题 I am getting the following error in IE 11: SCRIPT5007: unable to get property "toString" of undefined or null reference recaptcha__iw.js (451, 41) Could it be possible that there is an error in the script? Working on Safari, Chrome and Firefox. 回答1: Add this meta on the html header to enable some HTML5 feature for Internet Explorer 11.. <meta http-equiv="X-UA-Compatible" content="IE=edge"> If it's not working then open Compability View Settings and remove google.com Open developer tools and

How to solve Google v3 reCaptcha timeout?

旧时模样 提交于 2020-05-27 05:15:27
问题 We have a PHP form that is several tabs and times-out on the reCaptcha. Everything is done in one page and it works perfectly fine IF the form is completed in <3 minutes. The idea of a solution is to move the form processing and reCaptcha to a secondary page for processing. The problem is that the form page polls the google service for reCaptcha and collects a token value to a hidden field. <input type="hidden" name="recaptcha_response" id="recaptchaResponse"> The problem is how to request

How to solve Google v3 reCaptcha timeout?

老子叫甜甜 提交于 2020-05-27 05:15:07
问题 We have a PHP form that is several tabs and times-out on the reCaptcha. Everything is done in one page and it works perfectly fine IF the form is completed in <3 minutes. The idea of a solution is to move the form processing and reCaptcha to a secondary page for processing. The problem is that the form page polls the google service for reCaptcha and collects a token value to a hidden field. <input type="hidden" name="recaptcha_response" id="recaptchaResponse"> The problem is how to request