Get to stream tweets from users a user is following using tweepy
问题 I'm using Tweepy Streaming methods to try to get all the tweets from a specific user, both the ones the user created and those coming to his timeline from other users the user is following. I've tried several combinations, this one, for instance, using the user ID, only gives me the tweets that the user pushes: l = StreamListener() streamer = tweepy.Stream(auth=auth, listener=l) streamer.filter(follow=['3071126254']) The rest of trials all lead me to constant 406 responses from Twitter: l =