.. method:: API.list_subscribers(list_id/slug, [owner_id/owner_screen_name], \
- [cursor])
+ [cursor], [count], [include_entities], \
+ [skip_status])
Returns the subscribers of the specified list. Private list subscribers will
only be shown if the authenticated user owns the specified list.
:param owner_id: |owner_id|
:param owner_screen_name: |owner_screen_name|
:param cursor: |cursor|
+ :param count: |count|
+ :param include_entities: |include_entities|
+ :param skip_status: |skip_status|
:rtype: list of :class:`User` objects
def list_subscribers(self):
""" :reference: https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-subscribers
:allowed_param: 'owner_screen_name', 'slug', 'owner_id', 'list_id',
- 'cursor'
+ 'cursor', 'count', 'include_entities',
+ 'skip_status'
"""
return bind_api(
api=self,
path='/lists/subscribers.json',
payload_type='user', payload_list=True,
allowed_param=['owner_screen_name', 'slug', 'owner_id', 'list_id',
- 'cursor']
+ 'cursor', 'count', 'include_entities',
+ 'skip_status']
)
@property