{
  "openapi": "3.0.0",
  "info": {
    "title": "Facebook获取资料ID API (V1)",
    "version": "1.0.0",
    "description": "从给定的资料URL中检索唯一的Facebook资料ID。"
  },
  "paths": {
    "/api/facebook/get-profile-id/v1": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "获取资料ID",
        "description": "从给定的资料URL中检索唯一的Facebook资料ID。",
        "operationId": "getProfileIdV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "用于API访问鉴权的用户安全令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "url",
            "in": "query",
            "description": "Facebook资料URL的路径部分。不要包含 `https://www.facebook.com`。示例：`/people/To-Bite/pfbid021XLeDjjZjsoWse1H43VEgb3i1uCLTpBvXSvrnL2n118YPtMF5AZkBrZobhWWdHTHl/`",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "默认响应",
            "content": {
              "application/json": {}
            }
          }
        },
        "x-order": "30001010"
      }
    }
  },
  "components": {}
}