Tag: SSL
All the articles with the tag "SSL".
iOS WebView 忽略 SSL 证书错误
Published: at 09:39 AMiOS WebView 加载 HTTPS 网站时出现 SSL 证书错误(An SSL error has occurred and a secure connection to the server cannot be made.),解决方法包括修改 Info.plist 文件和使用 WKNavigationDelegate 处理 URLAuthenticationChallenge。
Python CERTIFICATE_VERIFY_FAILED 错误解决方法
Published: at 11:41 AM解决 Python requests 库请求时遇到的 CERTIFICATE_VERIFY_FAILED 错误,包括安装 certifi 包、macOS 系统下的证书安装以及代码层面解决方法。
解决 Python 错误:'lib' module has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'
Published: at 11:41 AM解决 Python 代码中出现的`module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK'`错误。通过升级 pip 和 pyopenssl 库来解决此问题。
解决 Python 'module' object has no attribute 'SSL_ST_INIT' 错误
Published: at 11:41 AM本文介绍了如何解决 Python 中出现的 'module' object has no attribute 'SSL_ST_INIT' 错误,包括使用 pip install pyopenssl 和 sudo python -m easy_install --upgrade pyOpenSSL 两种方法。