Discourse/Uncategorized/2020-12-28 Exporting our Slack Emoji Collection
|
📜 Discourse Archive |
Exporting our Slack Emoji Collection[edit | edit source]
Looking for admin help in exporting Slack custom emojis for use in the forum and rocket.chat
gist.github.com
https://gist.github.com/lmarkus/8722f56baf8c47045621[edit | edit source]
README.MD[edit | edit source]
```
- Extracting Emoji From Slack!
Slack doesn't provide an easy way to extract custom emoji from a team. (Especially teams with thousands of custom emoji) This Gist walks you through a relatively simple approach to get your emoji out.
If you're an admin of your own team, you can get the list of emoji directly using this API: https://api.slack.com/methods/emoji.list. Once you have it, skip to Step 3
HOWEVER! This gist is intended for people who don't have admin access, nor access tokens for using that list.
Follow along... ```
This file has been truncated. show original
download.sh[edit | edit source]
```
- !/usr/bin/env bash
UPDATE for 2019: I completely changed my approach on how to obtain the emoji dump.[edit | edit source]
The new approach results in a JSON file, so the processing is a bit diferent than[edit | edit source]
with the previous version. This version will also take care of aliased emoji.[edit | edit source]
- Use:
- Make this file executable, and feed it the results from the Slack emoji URL dump. Files will be downloaded to `output`
- chmod +x download.sh
- ./download.sh emoji.json
```
This file has been truncated. show original
themanmaran — 2020-12-28