Skip to content

Instantly share code, notes, and snippets.

@timmc-edx
Created September 28, 2023 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timmc-edx/e0c5e1b0665a4977744ba99f404269d1 to your computer and use it in GitHub Desktop.
Save timmc-edx/e0c5e1b0665a4977744ba99f404269d1 to your computer and use it in GitHub Desktop.
Extracting Slack user email addresses from a HAR file
# Load a channel's info pane, scroll to the bottom of the member list, export a HAR, then run it through this:
jq '.log.entries[]|select(.request.url|contains("users/list"))|.response.content.text' -r | jq '.results[]|.profile.email' -r
# Useful for workspace migration.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment