8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Slack APIのメッセージ投稿でのアイコンの変更方法

Last updated at Posted at 2021-04-03

結論:chat:write.customizeが必要

ドキュメントを見ると、iconの変更、usernameの変更には、as_user:falseが必要と書いてある
https://api.slack.com/methods/chat.postMessage

が、その通りにするとエラーになる。

{"ok":false,"error":"invalid_arguments","deprecated_argument":"as_user"}

上記のドキュメントの下の方に、さらっと

Please note that the as_user parameter may not be used by new Slack apps. Read more about Authorship to understand how as_user works for classic Slack apps.

とかかれており、この方法は正しくない。

This is a powerful ability and must only be used when the user themselves gives permission to do so. For this reason, this ability is only available when an app has requested and been granted an additional scope — chat:write.customize.

というわけで、as_userは使わず、Slackアプリに chat:write.customize 権限を付加すれば、usernameの変更、iconの変更(icon_emoji, icon_url)が可能になる。

おまけ: アイコンの英語名の表示の仕方

Slackのアイコンは日本語名がついている場合、それが表示される。Slack APIで使う場合は英語名が良いので、それを表示する方法。
image.png

まずはメッセージ書き込みウインドウでアイコン選んで入力する。入力されたアイコンにマウスカーソルを重ねると、アイコンの英語名が表示されます。
image.png

8
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?