在我的服务器上运行this PHP code时,在顶部添加我的信息并将第27行更改为:
echo "error calling webservice, status is:" . $status . " " . curl_error($curl);
我收到此错误:
调用webservice时出错,状态为:0 SSL证书问题,验证 CA证书没问题。详细信息:错误:14090086:SSL 例程:SSL3_GET_SERVER_CERTIFICATE:证书验证失败
有关如何解决此问题的任何想法?
答案 0 :(得分:0)
您将要设置curl处理程序以忽略SSL错误(假设您在本地计算机上测试它)。语法是:
from bs4 import BeautifulSoup as bs
#s = your html
soup = bs(s)
d = soup.select('div.span12.path_item')
e = bs( str(d[0]) )
for x in e.find_all('a'):
print x.text.strip()
请不要在生产中使用它,因为它不安全。