get_emoji_likes

get_emoji_likes只读扩展
获取表情回应用户

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

Parameters

Param Type Required Default Description
message_id messageId
emoji_id string

Returns (data)

{ emoji_like_list }:回应该表情的用户列表(nick_name 恒为空串)。

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

Field Type Required Description
emoji_like_list object[] 回应用户列表
Raw JSON Schema
{
  "type": "object",
  "properties": {
    "emoji_like_list": {
      "type": "array",
      "description": "回应用户列表",
      "items": {
        "type": "object",
        "properties": {
          "user_id": {
            "type": "string",
            "description": "用户 QQ 号(字符串)"
          },
          "nick_name": {
            "type": "string",
            "description": "昵称(当前实现恒为空串)"
          }
        },
        "required": [
          "user_id",
          "nick_name"
        ]
      }
    }
  },
  "required": [
    "emoji_like_list"
  ]
}

Examples

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

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