get_msg_emoji_likes

get_msg_emoji_likes只读扩展
获取一条消息的全部表情回应

Call via POST http://127.0.0.1:3000/get_msg_emoji_likes (JSON params as the body) or WebSocket.

Parameters

Param Type Required Default Description
message_id messageId

Returns (data)

该消息上每个表情回应的编号、数量与用户列表。

Every response is wrapped in the standard envelope: { "status": "ok", "retcode": 0, "data": ... }. The table below describes data.

data is an array; each element:

Field Type Required Description
emoji_id string 表情编号
emoji_type integer 表情类型
count integer 回应数量
last_reaction_time integer 最近一次回应时间
users object[]
Raw JSON Schema
{
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "emoji_id": {
        "type": "string",
        "description": "表情编号"
      },
      "emoji_type": {
        "type": "integer",
        "description": "表情类型"
      },
      "count": {
        "type": "integer",
        "description": "回应数量"
      },
      "last_reaction_time": {
        "type": "integer",
        "description": "最近一次回应时间"
      },
      "users": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "user_id": {
              "type": "integer",
              "description": "用户 QQ 号"
            }
          },
          "required": [
            "user_id"
          ]
        }
      }
    },
    "required": [
      "emoji_id",
      "emoji_type",
      "count",
      "last_reaction_time",
      "users"
    ]
  }
}

Examples

curl
Python
JavaScript
Go
SnowLuma SDK
curl -X POST http://127.0.0.1:3000/get_msg_emoji_likes \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer <access-token>' \
  -d '{"message_id":100001}'
Using an AI assistant?

MCP-capable clients can discover and call this action directly — no hand-written HTTP. See MCP.