TL;DR
Eine Geschichte über die Automatisierung der Emoji-Registrierung.
https://github.com/smashwilson/slack-emojinator Wie hier geschrieben.
git clone https://github.com/smashwilson/slack-emojinator.git
cd slack-emojinator
pip install -r requirements.txt
Ich habe gerade eine solche Anfrage erhalten, also habe ich es versucht.
cp .env.sample .env
vim .env
.env
export SLACK_TEAM=ssmjp
export SLACK_COOKIE="(Schließen Sie es in doppelte Anführungszeichen ein und fügen Sie alles ein)"
export SLACK_API_TOKEN= #Es bleibt hier leer
export EMOJI_DIR=
wget http://cultofthepartyparrot.com/parrots/parrot.gif
source .env
output
python upload.py parrot.gif
Processing parrot.gif.
Uploaded 1 emojis. (0 already existed)
Jetzt können Sie das Emoji `: parrot:`
hinzufügen.
git clone https://github.com/jmhobbs/cultofthepartyparrot.com
cd cultofthepartyparrot.com/parrots
for f in * ; do mv "$f" "parrot_$f" ; done
.env
export EMOJI_DIR=../cultofthepartyparrot.com/parrots
source .env
python upload.py ${EMOJI_DIR}/*.gif
Recommended Posts