1 Home
Zichao Lin edited this page 2023-11-25 20:56:20 +08:00
This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

API 文档

请求方式GET

接口路径:/api.php

请求参数

参数 类型 描述
id 整数 (可选)指定的记录编号。若不指定编号,则返回随机一条记录。

响应字段说明

字段名 类型 描述
code 整数 状态码
message 字符串 响应消息
data 对象 数据
  • code 响应状态码:

    • 0成功
    • 1未找到记录
    • 2查询执行错误
  • message 响应消息,对响应状态码进行说明。

  • data 数据对象,包含以下字段:

    • id:编号
    • title:内容
    • author:作者
    • from:来源

响应示例

成功响应示例

{
    "code": 0,
    "message": "OK",
    "data": {
        "id": 1,
        "title": "内容",
        "author": "作者",
        "from": "来源"
    }
}

失败响应示例

{
    "code": 1,
    "message": "No results found",
    "data": null
}
{
    "code": 2,
    "message": "Error executing query",
    "data": null
}