{
  "openapi": "3.0.0",
  "info": {
    "title": "微信公众号账户历史文章 API (V1)",
    "version": "1.0.0",
    "description": "返回通过biz id、文章URL、公众号名称或wxid识别的微信公众号的分页历史文章。此版本使用页码分页来浏览公众号的文章存档。"
  },
  "servers": [
    {
      "url": "https://api.justoneapi.com",
      "description": "prod-global（默认）"
    },
    {
      "url": "http://47.117.133.51:30015",
      "description": "prod-cn（中国大陆地区可选）"
    }
  ],
  "paths": {
    "/api/weixin/get-account-history-articles/v1": {
      "get": {
        "tags": [
          "微信公众号"
        ],
        "summary": "账户历史文章",
        "description": "返回通过biz id、文章URL、公众号名称或wxid识别的微信公众号的分页历史文章。此版本使用页码分页来浏览公众号的文章存档。",
        "operationId": "getApiWeixinGetAccountHistoryArticlesV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "此 API 服务的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "biz",
            "in": "query",
            "description": "微信公众号biz id。可从文章URL中的__biz查询参数读取。请使用biz、url或name之一。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "url",
            "in": "query",
            "description": "用于识别公众号的微信公众号文章URL。请使用biz、url或name之一。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "name",
            "in": "query",
            "description": "微信公众号名称或wxid，例如“人民日报”。请使用biz、url或name之一。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "page",
            "in": "query",
            "description": "从1开始的页码，用于分页获取微信公众号历史文章。",
            "required": false,
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          }
        ],
        "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": "16101010",
        "x-api-version": "v1",
        "x-highlights": []
      }
    }
  },
  "components": {}
}