Created
September 28, 2023 18:42
-
-
Save timmc-edx/e0c5e1b0665a4977744ba99f404269d1 to your computer and use it in GitHub Desktop.
Extracting Slack user email addresses from a HAR file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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