81
59

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 5 years have passed since last update.

SlackのAPI経由でのメンションの仕様変更(2018/9/12~)

Last updated at Posted at 2018-08-27

TL;DR;

  • Slack API経由でのメンション方法が変わる
  • 2017/9/11に変更を始めており、2018/9/12には完全に移行される
  • 新形式は <@user_id>
  • 旧形式の <@username> は使えなくなる
  • メッセージ中の @username がメンションになる link_names オプションも廃止される

変更内容

仕様変更のうち、関係の深い内容をいくつかピックアップします。

Mentioning users in messages より

メッセージ中のメンションの記法についてです。

The user mentioning syntax <@W123|bronte> is now deprecated and will eventually be removed.

<@W123|bronte> 記法は廃止予定であり、そのうち消すよ。

Use the simpler user ID-only form <@W123> instead

代わりに <@user_id> を使ってね。

Using link_names when posting messages is also deprecated. We'll continue matching @mentions with usernames, but for now please mention users with the <@W123> user ID format instead.

link_names オプションは廃止予定。今のところ @username も取り扱うけど、今後は <@user_id> 形式を使ってね。

The undocumented approach to mentioning users via the API — <@username> — will no longer function

<@username> っていう隠しコマンドは今後使えなくなるよ(…あれ非公式のものだったのか)。

補足

@channel, @here, @everyone<!channel>, <!here>, <!everyone> が対応している。
https://api.slack.com/docs/message-formatting#linking_to_urls

対応方法

  1. user_id を取得する
  2. APIからのメンションをすべて新形式の <@user_id> に変更する
81
59
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
81
59

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?