# 获取消息表情点赞列表

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /get_emoji_likes:
    post:
      summary: 获取消息表情点赞列表
      deprecated: false
      description: ''
      tags:
        - 消息扩展
        - 消息扩展
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                group_id:
                  description: 群号，短ID可不传
                  type: string
                message_id:
                  description: 消息ID，可以传递长ID或短ID
                  type: string
                emoji_id:
                  description: 表情ID
                  type: string
                emoji_type:
                  description: 表情类型
                  type: string
                count:
                  default: 0
                  description: 数量，0代表全部
                  type: number
              required:
                - message_id
                - emoji_id
                - count
              x-apifox-orders:
                - group_id
                - message_id
                - emoji_id
                - emoji_type
                - count
              x-apifox-ignore-properties: []
            examples:
              Default:
                value:
                  message_id: '12345'
                  emoji_id: '123'
                summary: 默认请求示例
      responses:
        '200':
          description: 业务响应
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/BaseResponse'
                  - type: object
                    required:
                      - data
                    properties:
                      data:
                        type: object
                        properties:
                          emoji_like_list:
                            description: 表情回应列表
                            type: array
                            items:
                              type: object
                              properties:
                                user_id:
                                  description: 点击者QQ号
                                  type: string
                                nick_name:
                                  description: 昵称?
                                  type: string
                              required:
                                - user_id
                                - nick_name
                              x-apifox-orders:
                                - user_id
                                - nick_name
                              x-apifox-ignore-properties: []
                        required:
                          - emoji_like_list
                        description: 业务数据
                        x-apifox-orders:
                          - emoji_like_list
                        x-apifox-ignore-properties: []
                    x-apifox-orders:
                      - data
                    x-apifox-ignore-properties: []
              examples:
                Success:
                  summary: 成功响应
                  value:
                    status: ok
                    retcode: 0
                    data:
                      emoji_like_list:
                        - user_id: '654321'
                          nick_name: 测试用户
                    message: ''
                    wording: ''
                    stream: normal-action
                Error_1400:
                  summary: 请求参数错误或业务逻辑执行失败
                  value:
                    status: failed
                    retcode: 1400
                    data: null
                    message: 请求参数错误或业务逻辑执行失败
                    wording: 请求参数错误或业务逻辑执行失败
                    stream: normal-action
                Error_1401:
                  summary: 权限不足
                  value:
                    status: failed
                    retcode: 1401
                    data: null
                    message: 权限不足
                    wording: 权限不足
                    stream: normal-action
                Error_1404:
                  summary: 资源不存在
                  value:
                    status: failed
                    retcode: 1404
                    data: null
                    message: 资源不存在
                    wording: 资源不存在
                    stream: normal-action
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 消息扩展
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/5348325/apis/api-410334663-run
components:
  schemas:
    BaseResponse:
      type: object
      x-schema-id: BaseResponse
      properties:
        status:
          type: string
          description: 状态 (ok/failed)
        retcode:
          type: number
          description: 返回码
        data:
          type: string
        message:
          type: string
          description: 消息
        wording:
          type: string
          description: 提示
        stream:
          type: string
          description: 流式响应
          enum:
            - stream-action
            - normal-action
      required:
        - status
        - retcode
      x-apifox-orders:
        - status
        - retcode
        - data
        - message
        - wording
        - stream
      x-apifox-ignore-properties: []
      x-apifox-folder: ''
  securitySchemes: {}
servers: []
security: []

```
