I get this exception from TweetStream 1.1.1, "exception.code == 404: uthenticationError (" Access denied ")" It worked last week, and now it is not. I tried different usernames and passwords. I can log in to Twitter with information about my account. I even uninstalled and reinstalled the module. what gives? Thanks for the help!
I'm trying to run this ...
import tweetstream stream = tweetstream.SampleStream("MY_USERNAME", "MY_PASSWORD") for tweet in stream: print tweet
The error looks something like this:
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
source share