Tweepy:发送请求失败:[Errno 11004] getaddrinfo失败

时间:2013-09-13 05:55:53

标签: tweepy

我只是想获取用户名,我最终得到了 以上错误。 我的互联网连接使用代理,我已经修改了我的代码 使用urllib2,但在下面的代码中似乎没有任何工作。

import tweepy 
import dbapi 
import urllib, urllib2, httplib

proxy_support = urllib2.ProxyHandler({"http":'proxyurl'})

opener = urllib2.build_opener(proxy_support,urllib2.HTTPHandler)
urllib2.install_opener(opener) 

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)  
auth.set_access_token(access_token, access_token_secret)  

api = tweepy.API(auth)  
print(api.me().screen_name)

任何帮助都将非常感激

0 个答案:

没有答案