问题:您已经实现了 Google reCAPTCHA v3,并在前端,但您在服务器端验证它时遇到困难。即使验证码无效,表单也会被提交。
解决方案:
要在服务器端有效处理 Google reCAPTCHA v3 验证,使用 POST 请求至关重要。这是一个解决方案:
<code class="php">function isValid() { try { $url = 'https://www.google.com/recaptcha/api/siteverify'; $data = [ 'secret' => '[YOUR SECRET KEY]', 'response' => $_POST['g-recaptcha-response'], 'remoteip' => $_SERVER['REMOTE_ADDR'] ]; $options = [ 'http' => [ 'header' => "Content-type: application/x-www-form-urlencoded\r\n", 'method' => 'POST', 'content' => http_build_query($data) ] ]; $context = stream_context_create($options); $result = file_get_contents($url, false, $context); return json_decode($result)->success; } catch (Exception $e) { return null; } }</code>
说明:
用法:
在您的代码中,只需编写:
if (isValid()) { // The user has passed the captcha validation. } else { // The user has failed the captcha validation. }
注意: 确保将 [YOUR SECRET KEY] 替换为提供的代码片段中的实际 reCAPTCHA 密钥。
以上是如何在 PHP 的服务器端验证 Google reCAPTCHA v3?的详细内容。更多信息请关注PHP中文网其他相关文章!