-
-
Save bahoo/59d81fc0f916d18658b1915ab615e116 to your computer and use it in GitHub Desktop.
import requests | |
SLACK_API_TOKEN = "xoxo-asdfghjkl..." # get one from https://api.slack.com/docs/oauth-test-tokens | |
CHANNEL_NAME = "general" | |
channel_list = requests.get('https://slack.com/api/channels.list?token=%s' % SLACK_API_TOKEN).json()['channels'] | |
channel = filter(lambda c: c['name'] == CHANNEL_NAME, channel_list)[0] | |
channel_info = requests.get('https://slack.com/api/channels.info?token=%s&channel=%s' % (SLACK_API_TOKEN, channel['id'])).json()['channel'] | |
members = channel_info['members'] | |
users_list = requests.get('https://slack.com/api/users.list?token=%s' % SLACK_API_TOKEN).json()['members'] | |
users = filter(lambda u: u['id'] in members, users_list) | |
for user in users: | |
first_name, last_name = '', '' | |
if user['real_name']: | |
first_name = user['real_name'] | |
if ' ' in user['real_name']: | |
first_name, last_name = user['real_name'].split() | |
print "%s,%s,%s" % (first_name, last_name, user['profile']['email']) |
Hi there,
I updated your code and made it a bit more user friendly. Check it out here: https://github.com/nickcanfield29/Download-Slack-Channel-Users/blob/master/Get_Slack_Channel_Users.py
Hey Nick,
This works well, but it seems to be having issues seeing private channels even though I'm a member. Any ideas on why that would be. I have the groups:read scope.
Hey @nickcanfield29,
Thanks for the quick update on this. I tested it on both private and public and the export is showing up blank for both now.
In case you are looking for a no-code solution, you can use Channel Tools app for Slack. Amongst other things, it can help you export a list of users in a Slack channel.
Hey Nick,
This works well, but it seems to be having issues seeing private channels even though I'm a member. Any ideas on why that would be. I have the groups:read scope.
I just drag and copied in the windows app. worked pretty gud
How exactly do I use this script?