获取开放平台客户端与接口调用情况信息
最近更新时间: 2026年01月15日 07时34分25秒
开放平台
描述
获取开放平台客户端与接口调用情况信息
支持的模式
客户端模式
请求方法
GET
请求地址
请求参数
| 参数名 | 是否必填 | 备注 |
|---|---|---|
| systemIds | 是 | 系统编号,支持批量获取 |
| year | 是 | 年度 |
| month | 否 | 月份 |
| startDate | 否 | 开始时间 ,格式yyyy-MM-dd |
| endDate | 否 | 结束时间,格式yyyy-MM-dd |
返回参数
| 参数名 | 类型 | 备注 | 码表 |
|---|---|---|---|
code | string | 响应状态码 | |
msg | string | 响应信息 | |
data | array[object] | 相应数据 | |
systemId | string | 系统编号 | |
systemName | string | 系统名称 | |
description | string | 描述 | |
clientApiCount | array[object] | 接口调用统计 | |
count | number | 调用次数 | |
endpoint | string | 接口请求路径标识 | 请参考API文档 |
clientApiTotalCount | number | 总调用次数 | |
optionalClientScopes | array[string] | 可选客户端作用域 | |
defaultClientScopes | array[string] | 默认客户端作用域 |
请求示例
curl --request GET 'https://api.tongji.edu.cn/v1/openplatform/api/client_api_statistics?systemIds=SYS001&year=2025'
返回示例
{
"code": "A00000",
"msg": "成功",
"data": {
"list": [
{
"systemId": "SYS001",
"systemName": "系统编号01",
"description": "系统编号01",
"clientApiCount": [
{
"count": 7,
"endpoint": "v1_dc_sep_auth_all_contact_info"
},
{
"count": 7,
"endpoint": "v1_dc_user_teacher_info"
},
{
"count": 0,
"endpoint": "v1_dc_user_organization_list"
},
{
"count": 0,
"endpoint": "v1_dc_sep_auth_student_info"
},
{
"count": 0,
"endpoint": "v2_dc_user_student_infos"
},
{
"count": 0,
"endpoint": "v2_dc_user_teacher_infos"
},
{
"count": 0,
"endpoint": "v2_dc_sep_auth_student_info"
},
{
"count": 0,
"endpoint": "v1_dc_user_student_infos"
},
{
"count": 0,
"endpoint": "v1_dc_user_teacher_infos"
},
{
"count": 0,
"endpoint": "v1_dc_user_student_info"
}
],
"clientApiTotalCount": 14,
"optionalClientScopes": [
"rt_***_score",
"rt_***_calendar",
],
"defaultClientScopes": [
"userId"
]
}
]
}
}