Discourse/Uncategorized/2020-12-28 Exporting our Slack Emoji Collection

From Noisebridge
Jump to navigation Jump to search

📜 Discourse Archive
This page is preserved verbatim from discuss.noisebridge.info, the Noisebridge community forum that operated roughly 2018–2022. The original site is defunct; this content was recovered via the Wayback Machine and is archived here as a primary source for Noisebridge history.
⮡ Original URL: https://discuss.noisebridge.info/t/exporting-our-slack-emoji-collection/2228
📦 Verify on Wayback Machine
📅 Archived: 2021-01-18
🏷 Original category: Uncategorized

Exporting our Slack Emoji Collection[edit | edit source]


system

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]

```

  1. 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]

```

  1. !/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]

  1. Use:
  2. Make this file executable, and feed it the results from the Slack emoji URL dump. Files will be downloaded to `output`
  3. chmod +x download.sh
  4. ./download.sh emoji.json

```

This file has been truncated. show original




themanmaran2020-12-28

@nthmost