是否可以通过代理使用Reddit API?

发布于 2025-01-10 00:28:57 字数 417 浏览 0 评论 0原文

我想通过 PRAW 中的代理使用 API,但我不知道该怎么做。有什么帮助吗?

我通读了 https://praw.readthedocs.io/en/stable/getting_started/configuration.html#using-an-http-or-https-proxy-with-praw

..正如我所说了解..如果我想通过代理使用 API,我必须在命令行中运行脚本之前设置它?

在通过密码流程授权之前,是否可以在 Python 代码本身中设置代理?

I want to use API through proxy in PRAW but I have no idea how to do it.. Any help?

I read through https://praw.readthedocs.io/en/stable/getting_started/configuration.html#using-an-http-or-https-proxy-with-praw

..and as I understand.. if I want to use the API through a proxy I must set it before running the script in the command line?

Isn't there a possibility to set the proxy in the Python code itself before authorizing through password flow?

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

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

发布评论

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

评论(1

仙女 2025-01-17 00:28:57

代码中的解决方案似乎是:

os.environ["HTTP_PROXY"] = "http://proxy.host.com:8080"

print("Request page with IP:", requests.get("http://icanhazip.com", timeout=1.5).text.strip())

It seems the solution inside the code is:

os.environ["HTTP_PROXY"] = "http://proxy.host.com:8080"

print("Request page with IP:", requests.get("http://icanhazip.com", timeout=1.5).text.strip())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文