我只是想转发我通过搜索发现的推文,并且我不断收到以下错误: TweepError:[{u'message':u'Sorry,该页面不存在','u'code':34}]
这是主要功能:
if __name__ == "__main__":
twitter = TwitterAPI()
results = twitter.search("cool")
print results[0].id
for i in xrange(0,10):
try:
twitter.retweet(results[i].id)
except tweepy.error.TweepError:
print "failure"
pass
以下是我的转发和搜索功能:
def search(self, string):
results = self.api.search(string, "en", "en")
return results
def retweet(self, tweet_id):
self.api.retweet(id)
有人知道我为什么会收到这个错误吗?
答案 0 :(得分:0)
弄清楚我的问题。我抛弃了转推功能,而只是做了这个:
results[0].retweet()