Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本上我正在开发一个元搜索引擎,并且 BING 和 Blekko API 在本地主机(WAMP 和 XAMPP)上运行良好,但谷歌自定义搜索不会发挥作用。现在谷歌可以在大学服务器上正常工作,所以这不是一个简单的代码问题。我猜要么谷歌不希望我使用本地主机,要么本地主机(WAMP 或 XAMPP)需要调整。任何对此有所了解的人都必须是网络传奇。干杯。
由于本地没有 SSL 证书,我们应该添加以下代码来解决问题:
在函数调用之前
curl_exec($ch);
添加以下行:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
好的,这个问题通过放置解决: curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 在函数调用 curl_exec($ch) 之前