Python TweetStream访问被拒绝

我一直从TweetStream 1.1.1处获取此异常,“ exception.code == 404:uthenticationError(“访问被拒绝”)“,它在上周有效,但现在没有。我尝试了不同的用户名和密码。我可以使用自己的帐户信息登录Twitter。我什至删除并重新安装了该模块。是什么赋予了?谢谢您的帮助!


我尝试运行此...


import tweetstream

stream = tweetstream.SampleStream("MY_USERNAME", "MY_PASSWORD")

for tweet in stream:

    print tweet

该错误实际上看起来像这样:


Traceback (most recent call last):

File "<pyshell#28>", line 1, in <module>

for tweet in stream:

File "C:\Python27\lib\site-packages\tweetstream-1.1.1-py2.7.egg\tweetstream\streamclasses.py", line 165, in __iter__

self._init_conn()

File "C:\Python27\lib\site-packages\tweetstream-1.1.1-py2.7.egg\tweetstream\streamclasses.py", line 103, in _init_conn

raise AuthenticationError("Access denied")

AuthenticationError: Access denied


富国沪深
浏览 165回答 2
2回答

智慧大石

Twitter发布了API的下一个版本(1.1)。而且tweetstream还不支持。在tweetstream项目问题跟踪器上查看相关问题。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python