@property
def home_timeline(self):
""" :reference: https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-home_timeline
- :allowed_param: 'count', 'since_id', 'max_id'
+ :allowed_param: 'count', 'since_id', 'max_id', 'trim_user',
+ 'exclude_replies', 'include_entities'
"""
return bind_api(
api=self,
path='/statuses/home_timeline.json',
payload_type='status', payload_list=True,
- allowed_param=['count', 'since_id', 'max_id'],
+ allowed_param=['count', 'since_id', 'max_id', 'trim_user',
+ 'exclude_replies', 'include_entities'],
require_auth=True
)