Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed No user found then Slack API paginates #197

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion response/slack/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ def api_call(self, api_endpoint, *args, **kwargs):

def users_list(self):
logger.info(f"Listing Slack users")
return self.api_call("users.list")
response = self.api_call("users.list")
result = response
while "response_metadata" in response:
next_cursor = response["response_metadata"].get("next_cursor")
if next_cursor is None or next_cursor == "":
break
response = self.get_paginated_users(limit=999, cursor=next_cursor)
result["members"].extend(response["members"])
return result

def get_paginated_users(self, limit=0, cursor=None):
response = self.api_call("users.list", limit=limit, cursor=cursor)
Expand Down