favorite.md 4.26 KB

文章收藏列表

OpenAPI Specification

openapi: 3.0.1
info:
  title: ''
  version: 1.0.0
paths:
  /srv/:
    get:
      summary: 文章收藏列表
      deprecated: false
      description: ''
      tags:
        - 文章
      parameters:
        - name: f
          in: query
          description: ''
          required: true
          example: manulife
          schema:
            type: string
        - name: a
          in: query
          description: ''
          required: true
          example: article
          schema:
            type: string
        - name: t
          in: query
          description: ''
          required: false
          example: favorite
          schema:
            type: string
        - name: limit
          in: query
          description: ''
          required: false
          example: '10'
          schema:
            type: string
        - name: page
          in: query
          description: ''
          required: false
          example: '0'
          schema:
            type: string
        - name: keyword
          in: query
          description: 搜索关键词
          required: false
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  data:
                    type: object
                    properties:
                      list:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                            post_title:
                              type: string
                              title: 文章表头
                            post_excerpt:
                              type: string
                              title: 简介
                            post_link:
                              type: string
                              title: 外部链接
                            post_date:
                              type: string
                              title: 发布时间
                            favorite_time:
                              type: string
                              title: 收藏时间
                          x-apifox-orders:
                            - id
                            - post_title
                            - post_excerpt
                            - post_link
                            - post_date
                            - favorite_time
                      total:
                        type: integer
                    required:
                      - list
                      - total
                    x-apifox-orders:
                      - list
                      - total
                required:
                  - code
                  - msg
                  - data
                x-apifox-orders:
                  - code
                  - msg
                  - data
              example:
                code: 1
                msg: 成功
                data:
                  list:
                    - id: 2742443
                      post_title: 2025年8月闭关出关回顾 | 守住底线,不说他过
                      post_excerpt: 一扇扇关房的门被轻轻推开,莲友们不畏末伏的酷热,迈着沉静的步伐排队从关房走向大雄宝殿,进行出关大回向。
                      post_link: ''
                      post_date: '2025-08-19 06:25:46'
                      open_num: 47
                      file_sn: null
                      favorite_time: '2026-02-26 18:29:56.688486+08'
                  total: 1
          headers: {}
          x-apifox-name: 成功
          x-apifox-ordering: 0
      security: []
      x-apifox-folder: 文章
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/7792797/apis/api-420078655-run
components:
  schemas: {}
  responses: {}
  securitySchemes: {}
servers:
  - url: https://manulife.onwall.cn
    description: 正式环境
security: []