getMessageReactions

suspend fun getMessageReactions(messageId: String, textEmoji: String): List<User>(source)

Get all reactions from a message for a given emoji.

Required for unicode emoji, custom emoji must be formatted.

Return

The reactions for the given emoji on the given message.

Parameters

messageId

The message to get reactions from.

textEmoji

The text of the emoji to get reactions for.

Throws


suspend fun getMessageReactions(messageId: String, emoji: Emoji): List<User>(source)

Get all reactions from a message for a given custom emoji.

Return

The reactions for the given emoji on the given message.

Parameters

messageId

The message to get reactions from.

emoji

The custom emoji to get reactions for.

Throws