gpt4 book ai didi

php - 验证码 file_get_contents() : SSL operation failed

转载 作者:可可西里 更新时间:2023-10-31 22:52:49 46 4
gpt4 key购买 nike

我正在为我的网页使用 Google reCaptcha。

在测试模式下一切正常。无 SSL。

当我在生产环境中测试我的网页时,出现以下错误:

Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed in /vendor/google/recaptcha/src/ReCaptcha/RequestMethod/Post.php on line 68

Warning: file_get_contents(): Failed to enable crypto in /vendor/google/recaptcha/src/ReCaptcha/RequestMethod/Post.php on line 68

Warning: file_get_contents(https://www.google.com/recaptcha/api/siteverify): failed to open stream: operation failed in /vendor/google/recaptcha/src/ReCaptcha/RequestMethod/Post.php on line 68
["invalid-json"]

我这样调用 reCaptcha API:

<script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"
async defer></script>

如 google 的开发者页面所述。

我在 hoststar.ch 上托管我的网页。正在运行 TSL 1.2。

我希望有人能帮助我。

最佳答案

作为对您最后评论的回应,我意识到您无法更改 Google 的 reCaptcha api - 我的意思只是在 example.com< 上实际执行一个 file_get_contents/code>(它确实存在)作为测试,看看您是否可以使用该方法检索任何内容,因为某些网络主机禁用相关功能。

但是,对于 Google reCatcha API,您可能需要为 file_get_contents 函数调用指定额外的参数,特别是专门为 SSL 设置 context 选项。 p>

$secret = 'Your google secret';
$captcha = trim( $_POST['g-recaptcha-response'] );
$ip = $_SERVER['REMOTE_ADDR'];
$url = "https://www.google.com/recaptcha/api/siteverify?secret={$secret}&response={$captcha}&remoteip={$ip}";

$options=array(
'ssl'=>array(
'cafile' => '/path/to/cacert.pem',
'verify_peer' => true,
'verify_peer_name' => true,
),
);
$context = stream_context_create( $options );
$res=json_decode( file_get_contents( $url, FILE_TEXT, $context ) );
if( $res->success ){/* all good */}
else{ /* captcha failed */ }

如果您还没有 cacert.pem 的副本或 ca-bundle.crt您可以从各自的链接下载它们。 cafile 的路径可以使用任何一种 - 将副本保存到您的主机并更正路径以适合您的环境。

关于php - 验证码 file_get_contents() : SSL operation failed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33849880/

46 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com