Umgebung: Python 2.7.10 tweepy:3.5.0
Fehler: tweepy.error.TweepError: Anfrage konnte nicht gesendet werden: [SSL: UNKNOWN_PROTOCOL] unbekanntes Protokoll (_ssl.c:590)
Code: Eine Demo online
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
für Tweet in public_tweets :
print num
num += 1
text_noem = highpoints.sub('--emoji--', tweet.text)
text_noem = text_noem.encode('utf8')
Bitte geben Sie mir einen Rat, was ist der Grund?
原来是代理服务器不支持http协议,换了代理就可以了