使用 mechanize 访问需要 SSL 的网站
我需要访问一个网站(https://*),该网站要求我在 Firefox 中安装两个证书才能成功访问它。一种是我可以导出为 .p12 文件(客户端证书),另一种是 .crt 文件(CA 证书)。如果我尝试在没有这些证书的情况下访问该网站,则会收到“握手失败错误”。
如何使用 Python 访问该网站?我正在考虑使用机械化。谢谢。
I need to visit a site (https://*) that requires me to install two certificates in Firefox before I can visit it successfully. One I can export as a .p12 file (Client Certificate), and one is a .crt file (CA Certificate). If I try accessing this site without these certificates, I get a "failed handshake error".
How do I visit this site in Python? I was thinking of using mechanize. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您使用 webdriver 来自动化 Firefox。它也有一个Python 接口。
I'd suggest you use webdriver to automate Firefox. It has a Python interface too.