我已经设置了一个带有自动跟回的自动推文机器人。 我注意到大约一个星期后,脚本的自动跟进停止工作。
try:
followers = api.get_followers_ids(screen_name = "Twitter Handle goes here")
for followers_ids in followers['ids']:
api.create_friendship(user_id=followers_ids)
except TwythonError as e:
print(e)
错误代码没有打印任何东西,所以我不知道发生了什么。
有可能有更好的方法吗?
感谢。
答案 0 :(得分:1)