Timeline methods
----------------
-.. method:: API.home_timeline([since_id], [max_id], [trim_user], [exclude_replies], \
- [count])
+.. method:: API.home_timeline([count], [since_id], [max_id], [trim_user], \
+ [exclude_replies])
Returns the 20 most recent statuses, including retweets, posted by the
authenticating user and that user's friends. This is the equivalent of
/timeline/home on the Web.
+ :param count: |count|
:param since_id: |since_id|
:param max_id: |max_id|
:param trim_user: |trim_user|
:param exclude_replies: |exclude_replies|
- :param count: |count|
:rtype: list of :class:`Status` objects
@property
def home_timeline(self):
""" :reference: https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-home_timeline
- :allowed_param: 'since_id', 'max_id', 'count'
+ :allowed_param: 'count', 'since_id', 'max_id'
"""
return bind_api(
api=self,
path='/statuses/home_timeline.json',
payload_type='status', payload_list=True,
- allowed_param=['since_id', 'max_id', 'count'],
+ allowed_param=['count', 'since_id', 'max_id'],
require_auth=True
)