Skip to content

Instantly share code, notes, and snippets.

View hjonessimple's full-sized avatar

hjonessimple

  • Sacramento
View GitHub Profile
@hjonessimple
hjonessimple / download-slack-emoji.sh
Created January 11, 2021 22:59 — forked from stefansundin/download-slack-emoji.sh
Download all of your Team's custom Slack emojis.
#!/bin/bash -eo pipefail
# Log in to Slack in a web browser and open the network tools to inspect the traffic.
# Filter the requests with "/api/" and pick one to inspect. Click on the Headers tab and scroll down to see the request details.
# You need the xoxc token from the request body, and a copy of the cookies. It is the "d" cookie that is important, but you can copy all of them.
# Paste the values below.
# You need to have curl and jq installed.
SLACK_TOKEN="xoxc-...."
COOKIES="d=...."