在 Twisted 中发出 HTTPS 请求

发布于 2024-09-08 12:16:35 字数 471 浏览 2 评论 0原文

我正在尝试编写一个客户端,它可以根据其配置方式发出 HTTP 和 HTTPS 请求。对于普通的HTTP,我一直在使用twisted.web.client.Agent并使用agent.request(METHOD, HOST, HEADERS, CONTENT)来发出请求。我关心的是主机字段,当我执行 HTTP 时,它可以执行类似“http://localhost:8000 的操作”,但如果我切换到 HTTPS,则会收到错误:

Failure: twins.web.error.SchemeNotSupported: Unsupported schema: 'https'

我知道 client.getPage 方法的存在,但我想知道是否有任何类似的很棒的高级方法可以像 agent.request 一样发出请求,但使用 HTTPS?

I am trying to write a client that can make both HTTP and HTTPS requests depending on how it is configured. For normal HTTP, I have been using twisted.web.client.Agent and using agent.request(METHOD, HOST, HEADERS, CONTENT) to make the requests. What I care about is that host field, when I do HTTP it works doing something like "http://localhost:8000", but if I switch to HTTPS, I get an error:

Failure: twisted.web.error.SchemeNotSupported: Unsupported scheme: 'https'

I am aware of the existence of the client.getPage method, but I was wondering if there was any similarly awesome and high level methods that I can make requests with just like agent.request, but using HTTPS?

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

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

发布评论

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

评论(1

纸伞微斜 2024-09-15 12:16:35

twisted.web.client.Agent 最近才添加了 HTTPS 支持。如果您可以使用最近发布的 Twisted 10.1,则 Agent 将接受您的 HTTPS URL。

HTTPS support was only recently added to twisted.web.client.Agent. If you can use Twisted 10.1, very recently released, then Agent will accept your HTTPS URLs.

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