我通过此捆绑包将谷歌的reCAPTCHA添加到我的symfony 3项目的注册页面中:github/EWZRecaptchaBundle。提交注册表后,我有:
$api_url = "https://www.google.com/recaptcha/api/siteverify?";
$secret_key = "----my-key----";
$api_key = "&secret=" . $secret_key;
$g_recaptcha_response = $_POST['g-recaptcha-response'];
$api_response = "&response=" . $g_recaptcha_response;
$api_remote_ip = "&remoteip=" . $_SERVER['REMOTE_ADDR'];
$url = $api_url . $api_key . $api_response . $api_remote_ip;
$response = json_decode(file_get_contents($url), true);
响应给我这个:
array(4) { ["success"]=> bool(false) ["challenge_ts"]=> string(20) "2017-07-06T16:49:56Z" ["hostname"]=> string(14) "********.com" ["error-codes"]=> array(1) { [0]=> string(20) "timeout-or-duplicate" } }
超时或重复未在其指南中记录。我不知道如何解决这个问题或者它来自哪里。
答案 0 :(得分:2)
此捆绑包是否已经为您执行此操作(检查验证码并将表单设置为有效或无效),因此,进行自定义调用,重复或超时...(因为它已经完成)通过bindRequest上的包(我认为))