tweepy 库 连接Twitter API 报错

环境:python 2.7.10 tweepy:3.5.0
错误:tweepy.error.TweepError: Failed to send request: [SSL: UNKNOWN_PROTOCOL] unknown protocol (_ssl.c:590)

代码:网上一个demo
import re
import tweepy

auth = tweepy.OAuthHandler("xxxxx",

                       "xxxxx")  

auth.set_access_token("xxxxx",

                  "xxxxx")   

api = tweepy.API(auth,proxy="127.0.0.1:1080")
highpoints = re.compile(u'uD800-uDBFF')
public_tweets = api.home_timeline()
num = 0
for tweet in public_tweets:

print num  
num += 1  
text_noem = highpoints.sub('--emoji--', tweet.text)  
text_noem = text_noem.encode('utf8')

求大神指点,什么原因呢?

阅读 3.2k
1 个回答

原来是代理服务器不支持http协议,换了代理就可以了

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题