0

每次尝试通过代理运行代码时,我都会收到此错误。我已经浏览了关于如何让我的代码在代理后面运行的每个可用链接,但我根本无法完成这项工作。

import twython
import requests
TWITTER_APP_KEY = 'key' #supply the appropriate value
TWITTER_APP_KEY_SECRET = 'key-secret' 
TWITTER_ACCESS_TOKEN = 'token'
TWITTER_ACCESS_TOKEN_SECRET = 'secret'


t = twython.Twython(app_key=TWITTER_APP_KEY, 
app_secret=TWITTER_APP_KEY_SECRET, 
oauth_token=TWITTER_ACCESS_TOKEN, 
oauth_token_secret=TWITTER_ACCESS_TOKEN_SECRET,
client_args = {'proxies': {'http': 'proxy.company.com:10080'}})

现在如果我这样做

t = twython.Twython(app_key=TWITTER_APP_KEY, 
        app_secret=TWITTER_APP_KEY_SECRET, 
        oauth_token=TWITTER_ACCESS_TOKEN, 
        oauth_token_secret=TWITTER_ACCESS_TOKEN_SECRET,
        client_args = client_args)

print t.client_args

我只得到一个 {}

当我尝试跑步时

t.update_status(status='See how easy this was?')

我得到这个问题:

Traceback (most recent call last):
File "<pyshell#40>", line 1, in <module>
t.update_status(status='See how easy this was?')
File "build\bdist.win32\egg\twython\endpoints.py", line 86, in update_status
return self.post('statuses/update', params=params)
File "build\bdist.win32\egg\twython\api.py", line 223, in post
return self.request(endpoint, 'POST', params=params, version=version)
File "build\bdist.win32\egg\twython\api.py", line 213, in request
content = self._request(url, method=method, params=params, api_call=url)
File "build\bdist.win32\egg\twython\api.py", line 134, in _request
response = func(url, **requests_args)
File "C:\Python27\lib\site-packages\requests-1.2.3-py2.7.egg\requests\sessions.py",    line 377, in post
return self.request('POST', url, data=data, **kwargs)
File "C:\Python27\lib\site-packages\requests-1.2.3-py2.7.egg\requests\sessions.py", line 335, in request
resp = self.send(prep, **send_kwargs)
File "C:\Python27\lib\site-packages\requests-1.2.3-py2.7.egg\requests\sessions.py", line 438, in send
r = adapter.send(request, **kwargs)
File "C:\Python27\lib\site-packages\requests-1.2.3-py2.7.egg\requests\adapters.py", line 327, in send
raise ConnectionError(e)
ConnectionError: HTTPSConnectionPool(host='api.twitter.com', port=443): Max retries  exceeded with url: /1.1/statuses/update.json (Caused by <class 'socket.gaierror'>: [Errno 11004] getaddrinfo failed)

我到处搜索。尽我所能。唯一可用的资源是:

https://twython.readthedocs.org/en/latest/usage/advanced_usage.html#manipulate-the-request-headers-proxies-etc

https://groups.google.com/forum/#!topic/twython-talk/GLjjVRHqHng

https://github.com/fumieval/twython/commit/7caa68814631203cb63231918e42e54eee4d2273

https://groups.google.com/forum/#!topic/twython-talk/mXVL7XU4jWw

我在这里(在 Stack Overflow 上)也找不到任何主题。

请帮忙。希望有人回复。如果您已经这样做了,请帮助我提供一些代码示例。

4

3 回答 3

3

您的代码没有使用您的代理。该示例显示,您为 plain 指定了一个代理,HTTP但您的 stackstrace 显示一个HTTPSConnectionPool. 您的本地计算机可能无法解析外部域。

尝试像这样设置您的代理:

client_args = {'proxies': {'https': 'http://proxy.company.com:10080'}}
于 2013-07-03T18:15:51.287 回答
1

结合@t-8ch 的回答(即您必须使用他定义的代理),您还应该意识到,到目前为止,请求(Twython 的底层库)不支持通过 HTTPS 进行代理。这是请求底层库 urllib3 的问题。据我所知,这是一个长期存在的问题。

最重要的是,阅读一些 Twython 的源代码解释了为什么t.client_args返回一个空字典。简而言之,如果您改为使用 print t.client.proxies,您会看到您的代理确实正在按应有的方式进行处理。

最后,在 StackOverflow 上抱怨您的工作场所并在评论中链接到与您的 GitHub 用户名(和真实姓名)相关联的 GitHub 提交并不是最好的主意。StackOverflow 已被 Google 彻底索引,毫无疑问,其他人可能会发现它并像我一样轻松地将它与您联系起来。最重要的是,该提交对 Twython 当前的行为完全没有影响。通过追逐该提交的作者,您将陷入无休止的兔子洞。

于 2013-07-04T16:36:12.800 回答
0

看起来域名查找失败。假设您配置的 DNS 服务器可以解析 Twitter 的域名(当然可以),我会假设您的 DNS 查找proxy.company.com失败。尝试通过 IP 地址而不是主机名使用代理。

于 2013-07-03T12:27:19.257 回答