Методы
box-python-sdk 'Get Enterprise users' и 'Get Group' поддерживают 'Paging-based Paging', согласно api docs они должны возвращать total_count, limit, offset
поля, которые можно использовать для следующихзапрос / нумерация страниц.
# sdk method to get enterprise users
users = client.users(limit=1000, offset=0, filter_term=None, user_type=None, fields=fields)
print(vars(users))
#output
{'_session': <boxsdk.session.session.AuthorizedSession object at 0x7f3382a6b400>,
'_url': 'https://api.box.com/2.0/users', '_limit': 1000,
'_fields': ['type', 'id', 'name', 'login', 'created_at', 'modified_at',
'language', 'timezone', 'space_amount', 'space_used', 'max_upload_size',
'status', 'job_title', 'phone', 'address', 'avatar_url', 'role',
'tracking_codes', 'can_see_managed_users', 'is_sync_enabled',
'is_external_collab_restricted', 'is_exempt_from_device_limits',
'is_exempt_from_login_verification', 'enterprise', 'my_tags', 'hostname',
'is_platform_access_only'],
'_additional_params': {'user_type': 'managed'},
'_return_full_pages': False,
'_has_retrieved_all_items': False,
'_all_items': None,
'_offset': 0}
Не возвращается total_count
и то же самое относится к методу client.get_groups()
.
Я дважды проверил, box-api
возвращает total_count
.я делаю какую-то ошибку или в SDK есть ошибка.