自定义API
更新时间: 2024-05-08 05:50:48
阅读 45
1. 概述
本文为您详细介绍自定义API。
- 带 * 为必填/必传
- 你需要在本地完成test tables tablemeta tabledata 的创建,本产品将会完成数据的解析
- 通常不推荐使用自定义API,如确实有需求建议使用Restful API,更简单,也更稳定。
2. 操作步骤
2.1 在界面输入以下信息
2.2 第三方需要实现的REST API接口(1.0版本)
说明:
rest接口统一用post方法
返回body统一为code,result,message结构。code200为正常,需返回result;否则需返回message
调用超时时间为10分钟
接口列表:
test
tables
tablemeta
tabledata
url/test
input
{
"username": "xxx",
"password": "xxx",
"parameters": json object | json array
}
output
{
"code": 200, *
"result": {
// apiVersion为API数据源接口版本,这里需要固定返回1.0
"apiVersion": "1.0", *
// name为第三方实现的API数据源的名字
"name": "xxx"
}
or
"message": "xxx"
}
url/tables
input
{
"username": "xxx",
"password": "xxx",
"parameters": json object | json array
}
output
{
"code": 200, *
"result": ["xxx", "xxx", "xxx"]
or
"message": "xxx"
}
url/tablemeta
input
{
"username": "xxx",
"password": "xxx",
"parameters": json object | json array,
"tableName": "xxx" *
}
output
{
"code": 200, * // 输入不存在的tablename,code需要返回411
"result": {
"names": ["xxx", "xxx", "xxx"], *
// types数组中的值,只能是以下的5种之一,区分大小写
// String 字符串 | Whole 整数 | Decimal 小数 | Date 日期 | DateTime 日期时间
"types": ["Whole", "String", "DateTime"] *
}
or
"message": "xxx"
}
url/tabledata
input
{
"username": "xxx",
"password": "xxx",
"parameters": json object | json array,
"selectFields": [
{
"tableName": "xxx",
"fieldName": "xxx"
},
...
{
"tableName": "xxx",
"fieldName": "xxx"
}
],
"tableName": "xxx" *
}
output
{
"code": 200, * // 输入不存在的tablename,code需要返回411
"result": {
"names": ["xxx", "xxx", "xxx", "xxx", "xxx", "xxx"], *
// types数组中的值,只能是以下的5种之一,区分大小写
// String 字符串 | Whole 整数 | Decimal 小数 | Date 日期 | DateTime 日期时间
"types": ["Whole", "String", "Date", "DateTime"] *
// data中Date和DateTime类型的数据按照yyyy-MM-dd HH:mm:ss返回,时间用24小时制
// 时间时区使用东八区
"data": [ *
[123, "xxx", "1990-01-01", "1990-01-01 00:00:00"],
...
[123, "xxx", "1990-01-01" ,"1990-01-01 23:00:00"]
]
}
or
"message": "xxx"
}
文档反馈
以上内容对您是否有帮助?