- 整体调用说明
- 鉴权
- 概览统计
- 异常分析
- 获取趋势数据(今天-累计)(新鉴权)POST
- 获取趋势数据(小时粒度)(新鉴权)POST
- 设置问题级标签(新鉴权)POST
- 用户最近3日异常数据上报POST
- 根据堆栈关键字获取机型列表(国内)POST
- 获取时间段内崩溃用户列表POST
- 根据堆栈关键字获取崩溃统计POST
- 根据deviceId获取崩溃列表POST
- 根据issue获取时间段crashHash列表POST
- 根据设备id获取OpenIdPOST
- 获取某一个issue下的noteGET
- 获取某一个issue下的notePOST
- 获取issue详情POST
- 根据issue获取crashHash列表 (支持PC)GET
- 根据issue获取crashHash列表 (支持PC)POST
- 根据issue获取最近一次crashHash(支持PC)GET
- 根据issue获取最近一次crashHash(支持PC)POST
- 获取跟踪数据,跟踪日志,其他信息,自定义kv等GET
- 获取跟踪数据,跟踪日志,其他信息,自定义kv等POST
- 获取崩溃详情(支持PC)GET
- 获取崩溃详情(支持PC)POST
- 崩溃分析,ANR分析,错误分析(支持PC)POST
- TOP问题列表GET
- TOP问题列表(新版)POST
- 上报详情条件查询POST
- 获取 ANR message及ANR TracePOST
- 其他
获取Top用户崩溃次数
POST
{{env}}/uniform/openapi/getMostReportUser/**
请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
Accept-Encoding
string
必需
示例值:
*
Body 参数application/json
appId
string
必需
customFields
array [object {5}]
必需
available
boolean
固定值
name
string
固定值
aggregateType
integer
固定值
termsSizeLimit
integer
查询数量
needDistinctCount
boolean
是否需要去重
searchConditionGroup
object
必需
conditions
array [object {4}]
必需
示例
{
"appId": "XXXXX",
"customFields": [
{
"available": true, // 固定值
"name": "userId", // 固定值
"aggregateType": 0, // 固定值
"termsSizeLimit": 10, // 查询数量
"needDistinctCount": true // 是否需要去重
}
],
"searchConditionGroup": {
"conditions": [
// 过滤版本
{
"queryType": "TERMS_WILDCARD",
"terms": [
"999.11600",
"111.13200"
],
"field": "version"
},
// 过滤时间 (毫秒)
{
"field": "crashUploadTime",
"queryType": "RANGE_RELATIVE_DATETIME",
"gte": 604800000
},
// 过滤类型
{
"queryType": "TERMS",
"terms": [
"CRASH" // 固定值
],
"field": "exceptionCategory"
}
]
}
}
返回响应
🟢200成功
application/json
Body
status
integer
必需
ret
integer
必需
code
null
必需
data
array [object {5}]
必需
total
integer
可选
fieldFilterTotal
integer
可选
distinctCount
integer
可选
name
string
可选
bucketList
array [object {3}]
可选
message
string
必需
traceId
string
必需
errorCode
null
必需
示例
{
"status": 200,
"ret": 200,
"code": null,
"data": [
{
"total": 2024896,
"fieldFilterTotal": 2024896,
"distinctCount": 636219,
"name": "userId",
"bucketList": [
{
"key": "A0FEB4B7968BFD2A4FCC43C5141576C0",
"docCount": 79,
"notInLimitedBuckets": false
},
{
"key": "osewR0qmHzLGSmDFE3wPTdAIB3tU",
"docCount": 77,
"notInLimitedBuckets": false
},
{
"key": "6D7CE91BB25DCE154F274E8DB9BA264D",
"docCount": 70,
"notInLimitedBuckets": false
},
{
"key": "F9C1CB4D9CA119444AC02C1C53716569",
"docCount": 69,
"notInLimitedBuckets": false
},
{
"key": "6D5369F87E6F9BFC76D1B8E4DC9DB5E3",
"docCount": 65,
"notInLimitedBuckets": false
},
{
"key": "C4849458D514D5E615771F515446282F",
"docCount": 60,
"notInLimitedBuckets": false
},
{
"key": "OTHERS",
"docCount": 1555590,
"notInLimitedBuckets": true
}
]
}
],
"message": "OK",
"traceId": "e37884b9-c511-4682-9e25-267de4c677f0",
"errorCode": null
}
修改于 2025-03-27 08:22:25