我正在尝试使用此lib从 python 中的用户检索所有推文。
python-twitter 中提供的执行此操作的方法定义为:
def GetUserTimeline(self,
user_id=None,
screen_name=None,
since_id=None,
max_id=None,
count=None,
include_rts=None,
trim_user=None,
exclude_replies=None):
虽然如果计数限制为 200。
文档:
count:指定要检索的状态数。不得大于 200。[可选]
我现在的问题是:是否可以使用此 lib 检索用户的所有推文?是否有替代解决方案?