0
我正在嘗試創建一個bot來轉發和推廣我的一些其他賬戶。但我收到以下錯誤Twython的對象沒有屬性'getUserTimeline'
AttributeError: 'Twython' object has no attribute 'getUserTimeline'
我的代碼是:
search_results = twitter.getUserTimeline(sreen_name="SCREENNAME", count = 2,)
try:
for tweet in search_results["statuses"]:
twitter.retweet(id = tweet["id_str"])
except TwythonError as e:
print e
誰能幫助?
你已經採取了看看關於得到用戶的時間軸,在twython文檔?它說什麼? –