{
  "openapi": "3.0.0",
  "info": {
    "title": "微信公众号文章评论回复 API (V1)",
    "version": "1.0.0",
    "description": "返回微信公众号文章评论的嵌套回复。使用文章URL和顶级评论的contentId收集回复线程，完善文章评论对话链。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/weixin/get-article-sub-comment/v1": {
      "get": {
        "tags": [
          "微信公众号"
        ],
        "summary": "文章评论回复",
        "description": "返回微信公众号文章评论的嵌套回复。使用文章URL和顶级评论的contentId收集回复线程，完善文章评论对话链。",
        "operationId": "getApiWeixinGetArticleSubCommentV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "此 API 服务的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "articleUrl",
            "in": "query",
            "description": "用于获取顶级评论下回复的微信公众号文章URL。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "contentId",
            "in": "query",
            "description": "用于获取嵌套评论回复的顶级评论内容ID。",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "好的",
            "content": {
              "*/*": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "code": {
                      "type": "string",
                      "enum": [
                        "0",
                        "100",
                        "101",
                        "202",
                        "300",
                        "301",
                        "302",
                        "303",
                        "400",
                        "500",
                        "600",
                        "601"
                      ]
                    },
                    "message": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    },
                    "recordTime": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": "16101310",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}