{
  "openapi": "3.0.0",
  "info": {
    "title": "微信公众号账户历史文章 API (V2)",
    "version": "1.0.0",
    "description": "返回通过ghid或文章URL识别的微信公众号的历史文章。此版本使用上游响应返回的PagingInfo.Offset字符串游标，更适合稳定的连续分页。"
  },
  "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/v2": {
      "get": {
        "tags": [
          "微信公众号"
        ],
        "summary": "账户历史文章",
        "description": "返回通过ghid或文章URL识别的微信公众号的历史文章。此版本使用上游响应返回的PagingInfo.Offset字符串游标，更适合稳定的连续分页。",
        "operationId": "getApiWeixinGetAccountHistoryArticlesV2",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "此 API 服务的访问令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "ghid",
            "in": "query",
            "description": "微信公众号原始id，例如gh_363b924965e9。请使用ghid或url之一。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "url",
            "in": "query",
            "description": "用于识别公众号并获取历史文章的微信公众号文章URL。请使用ghid或url之一。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "上一次响应返回的PagingInfo.Offset游标。第一页时留空。",
            "required": false,
            "schema": {
              "type": "string",
              "default": ""
            }
          }
        ],
        "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": "16101020",
        "x-api-version": "v2",
        "x-highlights": []
      }
    }
  },
  "components": {}
}