SSL 超时和“未知 SSL 协议”错误

发布于 2024-12-19 15:20:48 字数 392 浏览 1 评论 0原文

使用 PHP SDK v3.1.1,我遇到了 SSL 错误,这些错误在过去 4-5 天内显着降低了我的应用程序(高流量)的速度:

"CurlException: 28: SSL connection timeout"
"CurlException: 35: Unknown SSL protocol error in connection to graph.facebook.com:443"
"CurlException: 35: Unknown SSL protocol error in connection to api-read.facebook.com:443"

我看到其他人也遇到了这些问题,所以我认为这可能是 Facebook 方面的问题,不是我的?

提前致谢, 酒吧。

Using PHP SDK v3.1.1, I'm experiencing SSL errors that are slows down my app (high traffic) significantly for the last 4-5 days:

"CurlException: 28: SSL connection timeout"
"CurlException: 35: Unknown SSL protocol error in connection to graph.facebook.com:443"
"CurlException: 35: Unknown SSL protocol error in connection to api-read.facebook.com:443"

I saw other people having these issues, so I think it may be on Facebook's side and not mine?

Thanks in advance,
Bar.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖乖哒 2024-12-26 15:20:48

遇到了同样的问题,在 github 中挖掘后做了以下修复:

//in your facebook.php file, avoid ssl verification
$opts[CURLOPT_SSL_VERIFYPEER] = false; //add after $opts[CURLOPT_URL] = $url;

希望有帮助

Had the same problem, did following for fix after digging in github:

//in your facebook.php file, avoid ssl verification
$opts[CURLOPT_SSL_VERIFYPEER] = false; //add after $opts[CURLOPT_URL] = $url;

Hope it helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文