我正在尝试这个例子
import tweepy
public_tweets = tweepy.api.public_timeline()
for tweet in public_tweets:
print tweet.text
但是我收到了这个错误。
tweepy.error.TweepError: Twitter error response: status code = 301
我可以找到使用tweepy的示例项目的任何建议或地点吗?
答案 0 :(得分:1)
你使用什么tweepy版本实际上?运行
python -c "import tweepy; print(tweepy.__version__)"
公共时间轴是Twitter API 1.0 endpoint,在Twitter API 1.1中不存在。
一年前