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

Is it possible to use Reddit API through proxy?

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

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

..据我所知..如果我想通过代理使用 API 我必须在命令行中的 运行 脚本之前设置它?

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

看来代码里面的解决方法是:

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

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