fetch_emoji_like

fetch_emoji_like只读扩展
获取表情回应用户(NapCat 分页)

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

Parameters

Param Type Required Default Description
message_id messageId
emojiId string
count int 10
cookie string ""

Returns (data)

分页的表情回应用户列表(NapCat 形状),含分页游标 cookie 与首/末页标记。

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

Field Type Required Description
result integer 结果码(恒 0)
errMsg string 错误信息(恒空串)
emojiLikesList object[] 回应用户列表
cookie string 下一页游标(末页为空串)
isLastPage boolean 是否末页
isFirstPage boolean 是否首页
Raw JSON Schema
{
  "type": "object",
  "properties": {
    "result": {
      "type": "integer",
      "description": "结果码(恒 0)"
    },
    "errMsg": {
      "type": "string",
      "description": "错误信息(恒空串)"
    },
    "emojiLikesList": {
      "type": "array",
      "description": "回应用户列表",
      "items": {
        "type": "object",
        "properties": {
          "tinyId": {
            "type": "string",
            "description": "用户 QQ 号(字符串)"
          },
          "nickName": {
            "type": "string",
            "description": "昵称(恒空串)"
          },
          "headUrl": {
            "type": "string",
            "description": "头像 URL(恒空串)"
          }
        },
        "required": [
          "tinyId",
          "nickName",
          "headUrl"
        ]
      }
    },
    "cookie": {
      "type": "string",
      "description": "下一页游标(末页为空串)"
    },
    "isLastPage": {
      "type": "boolean",
      "description": "是否末页"
    },
    "isFirstPage": {
      "type": "boolean",
      "description": "是否首页"
    }
  },
  "required": [
    "result",
    "errMsg",
    "emojiLikesList",
    "cookie",
    "isLastPage",
    "isFirstPage"
  ]
}

Examples

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

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