You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Script seems to be working fine, but I'm just curious why print('users', s.users) yields users [].
print('public channels', s.channels)
print('private channels', s.groups)
print('instant messages', s.ims)
print('multi user direct messages', s.mpim)
All these other prints, output the appropriate data. I have already double checked my scopes, and they are as follows:
[channels:history](https://api.slack.com/scopes/channels:history)
View messages and other content in a user’s public channels
[channels:read](https://api.slack.com/scopes/channels:read)
View basic information about public channels in a workspace
[chat:write](https://api.slack.com/scopes/chat:write)
Send messages on a user’s behalf
[files:read](https://api.slack.com/scopes/files:read)
View files shared in channels and conversations that a user has access to
[files:write](https://api.slack.com/scopes/files:write)
Upload, edit, and delete files on a user’s behalf
[groups:history](https://api.slack.com/scopes/groups:history)
View messages and other content in a user’s private channels
[groups:read](https://api.slack.com/scopes/groups:read)
View basic information about a user’s private channels
[im:history](https://api.slack.com/scopes/im:history)
View messages and other content in a user’s direct messages
[im:read](https://api.slack.com/scopes/im:read)
View basic information about a user’s direct messages
[mpim:history](https://api.slack.com/scopes/mpim:history)
View messages and other content in a user’s group direct messages
[mpim:read](https://api.slack.com/scopes/mpim:read)
View basic information about a user’s group direct messages
[users:read](https://api.slack.com/scopes/users:read)
View people in a workspace
Is this simply the desired output? Or am I missing something here?
The text was updated successfully, but these errors were encountered:
Script seems to be working fine, but I'm just curious why
print('users', s.users)
yieldsusers []
.All these other prints, output the appropriate data. I have already double checked my scopes, and they are as follows:
Is this simply the desired output? Or am I missing something here?
The text was updated successfully, but these errors were encountered: